数组看起来像:
[0] => stdClass Object ( [ID] => 420 [name] => Mary ) [1] => stdClass Object ( [ID] => 10957 [name] => Blah ) ...
我有一个名为$v.
$v
如何选择具有ID属性具有$v值的对象的数组条目?
ID
您要么迭代数组,搜索特定记录(在一次搜索中确定),要么使用另一个关联数组构建哈希图。
对于前者,像这样
$item = null; foreach($array as $struct) { if ($v == $struct->ID) { $item = $struct; break; } }