这不像我预期的那样有效。我需要在$foundfiles
中找到$results
中不存在的值。密钥永远不会匹配...我只对比较capture#.jpg
。
$foundfiles example :
Array
(
[0] => capture1000.jpg
[1] => capture10045.jpg
[2] => capture10050.jpg
... and so on
$results example :
Array
(
[0] => capture27254.jpg
[1] => capture27352.jpg
[2] => capture27450.jpg
... and so on
$image_set = array_diff($foundfiles, $results);
在此示例中,$image_set
应包含$foundfiles
中的所有值,因为$results
中没有这些值。