0

我正在尝试从名为 $items 的变量中获取数据

当我 var_dump($items); - 结果是这样的:

array(13) { 

[0]=> object(stdClass)#868 (2) { 
        ["meta_key"]=> string(17) "Email of Attendee"        
        ["meta_value"]=> string(68) "some-email@gmail.com" 
} 

[2]=> object(stdClass)#804 (2) { 
        ["meta_key"]=> string(28) "Name to be printed on badge:" 
        ["meta_value"]=> string(7) "some name to be printed" 
}

...等等 11 次

我想知道是否可以使用类似这样的代码从 $items 获取电子邮件:

$email = $items找到meta_key具有值的对象,"Email of Attendee"然后返回相应的值。

我最终做的是$items像这样运行一个 foreach 循环:

foreach($items as $item){

    $items[$item->meta_key]=$item->meta_value;

}

它将所有“meta_keys”转换为它们引用的值。现在:

$email = $items["Email of Attendee"]  

echo $email; 

result is some-email@gmail.com

发布这个,这样一个。类似情况的其他人可能会使用 for each 循环来转换事物

湾。有更多经验的人可以建议一种直接从 $items 获取“与会者的电子邮件”的方法,而无需通过 foreach 循环运行它。

4

4 回答 4

0

foreach can iterate through array as well as object

$given_array = array((object)array('meta_key'=>'email','mea_value'=>'fg'),
                     (object)array('meta_key'=>'email','mea_value'=>'gfdgf'));


foreach($given_array as $elt){
    foreach($elt as $key=>$value){
                if($key == "Email of Attendee"){
                    echo $email;
        }
}
于 2013-04-06T06:09:13.123 回答
0

仍然依赖于使用foreach循环。

function get_email($items) {

    foreach($items as $item){

        if (in_array("Email of Attendee", $item) {
            $email = $item["meta_value"];
            break;
        }

    }
    return $email;
}

更正 你可以得到特定的对象array_filter

$result = array_filter($array, function($o) {
                   return $o->meta_key == "Email of Attendee";
});

$email = $result[0]->meta_value;

echo $email;
于 2013-04-06T04:32:20.917 回答
0

这应该会变魔术。

foreach($items as $item){

    // $item is already holding the object here. Equals to $items[0] in the first loop
    if($item->meta_key == "Email of Attendee"){
        // do stuff
    }

}
于 2013-04-06T04:49:41.430 回答
0

引自搜索数组:array_filter vs loop

array_filter()无法原生处理 [多维数组]。您正在寻找数组中的单个值?array_filter()不是最好的方法,因为当你找到你一直在寻找的值时你可以停止迭代 -array_filter()不这样做。从更大的集合中过滤一组值?这很可能array_filter()比手动编码的循环更快,foreach因为它是一个内置函数。——斯特凡·格里格

使用phpforeach循环可能是两者中更容易阅读的:

function getItem($haystack, $needle) {
  foreach ($haystack as $hay) {
    if ($hay->meta_key == $needle) {
      return $hay->meta_value;
    }
  }
  return FALSE;
}

echo getItem($items, 'Email of Attendee'); // Returns 'some-email@gmail.com'

但是,正如引用所假设的,对于更大的数组,您可能想要使用 php 之类的东西array_filter()

function metaKeyIsEmail($obj) {
  return $obj->meta_key == 'Email of Attendee';
}

// array_filter() will return an array containing all items
// that returned TRUE for the callback metaKeyIsEmail()
$items_matched = array_filter($items, 'metaKeyIsEmail');

// If there was at least one match, take it off the front of
// the array and get its meta_value. Otherwise use FALSE.
$matched_value = !empty($items_matched) ? array_shift($items_matched)->meta_value : FALSE;

echo $matched_value; // Returns 'some-email@gmail.com'
于 2013-04-06T05:56:48.763 回答