0

我有一个脚本可以创建以下格式的数组

  $named_array["vehicles"][0]['vehicle'] = "i100-1 "  ;
  $named_array["vehicles"][1]['vehicle'] = "i100-2 "  ;
  $named_array["vehicles"][2]['vehicle'] = "i100-46 "  ;

我稍后在脚本中要做的是从 $named_array 获取索引值 [0-1-2 等],但我只有值( i100-1 等)作为查询选项,这样我以后可以更改它. 我想要实现的是,什么是索引值$named_arraywhere value is i100-2

这是最后输出到 json 。

我希望这是有道理的 !请问有什么帮助吗?

4

2 回答 2

2
function complex_index_of($named_array, $val){
    for($i=0, $n=count($named_array['vehicles']); $i<$n; $i++){
        if ($named_array['vehicles'][$i]['vehicle'] == $val)
            return $i;
    }
    return -1;
}


echo complex_index_of($named_array, 'i100-2 ');
// output: 1
于 2013-03-21T18:20:53.577 回答
1

尝试这样的事情(也许创建一个函数,如果你需要做不止一次)

$needle = 'i100-1';
$vIndex = -1;
foreach ($named_array["vehicles"] as $index => $data) {
    if($data['vehicle'] == $needle) {
        $vIndex = $index;
        break;
    }
}
于 2013-03-21T18:22:49.233 回答