我有一个脚本可以创建以下格式的数组
$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_array
where value is i100-2
这是最后输出到 json 。
我希望这是有道理的 !请问有什么帮助吗?