duanou1904 2013-11-15 01:22
浏览 145
已采纳

从数组中选择某些元素

I'm trying to remove everything from an array except DTSTART & DTEND

So I'm trying to convert this:

Array
(
[0] => Array
    (
        [DTEND] => 20130417
        [DTSTART] => 20130403
        [UID] => cerog90g7-fcqls51z0wteew@airbnb.com
        [DESCRIPTION] => CHECKIN:  04/08/2012
CHECKOUT: 04/17/2012
NIGHTS:   14
PHO
        [NE] =>     +1 504 914 0591
EMAIL:    testhere@email.com
PROPERTY: Breathtaking views over the lake

        [SUMMARY] => Name here (ED5ASC)
        [LOCATION] => Breathtaking views over the lake
    )

[1] => Array
    (
        [DTEND] => 20131231
        [DTSTART] => 20131226
        [UID] => rtyrtyg90g7--t520wkwqv2i8@airbnb.com
        [DESCRIPTION] => CHECKIN:  12/26/2013
CHECKOUT: 12/31/2013
NIGHTS:   5
PHON
        [E] =>     +44 7843 387767
EMAIL:    floraking@hotmail.com
PROPERTY: Breathtaking views over the lake

        [SUMMARY] => Name here (JrtyKW9)
        [LOCATION] => Breathtaking views over the lake
    )

[2] => Array
    (
        [DTEND] => 20121123
        [DTSTART] => 20121117
        [UID] => ntry5rxts23--qe9rtyrywi0@airbnb.com
        [SUMMARY] => Not available
    )

)

to look like this:

Array
(
[0] => Array
    (
        [DTEND] => 20130417
        [DTSTART] => 20130403
    )

[1] => Array
    (
        [DTEND] => 20131231
        [DTSTART] => 20131226
    )
)

[2] => Array
    (
        [DTEND] => 20121123
        [DTSTART] => 20121117
    )
)

I've searched for loads of options but I need to be able to just select these two elements and discard the rest, I will be using it with different arrays that have different values so can't just specify the elements to remove as they will vary.

  • 写回答

2条回答 默认 最新

  • doumei4964 2013-11-15 01:26
    关注
    $newArray = array();
    foreach ($array as $k => $v) {
      $newArray[$k]['DTEND'] = $v['DTEND'];
      $newArray[$k]['DTSTART'] = $v['DTSTART'];
    }
    

    edit: an alternative, since you mentioned trying to do it with one of the array iterator functions..

    array_walk($array, function(&$v){
      $v = array('DTEND' => $v['DTEND'],'DTSTART' => $v['DTSTART']); 
    });
    

    edit2: because I have no life...yet another alternative...

    array_walk($array, function(&$v){
      $v = array_intersect_key($v, array_flip(preg_grep('~^DT(END|START)$~', array_keys($v))));
    });
    

    I don't know which one is fastest/most efficient but my money is probably on the 2nd one.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥35 引用csv数据文件(4列1800行),通过高斯-赛德尔法拟合曲线,在选取(每五十点取1点)数据,求该数据点的曲率中心。
  • ¥20 程序只发送0X01,串口助手显示不正确,配置看了没有问题115200-8-1-no,如何解决?
  • ¥15 Google speech command 数据集获取
  • ¥15 vue3+element-plus页面崩溃
  • ¥15 像这种代码要怎么跑起来?
  • ¥15 怎么改成循环输入删除(语言-c语言)
  • ¥15 安卓C读取/dev/fastpipe屏幕像素数据
  • ¥15 pyqt5tools安装失败
  • ¥15 mmdetection
  • ¥15 nginx代理报502的错误