我有两个看起来像这样的数组,结果更多:
Array
(
[0] => Array
(
[comName] => John
[locID] => L152145
[locName] => Johns House
)
)
我想做的是比较结果,但只在 locName 元素上进行比较……这是我目前正在使用的代码。
$searchcode = "a url to json results";
$simple = file_get_contents($searchcode);
$arr = json_decode($simple , true);
然后对每个 json 文件执行此操作
$result = array_intersect($arr, $anotherarr);
理想情况下,这将从两个数组中返回匹配的 locNames
谢谢您的帮助!