在数组中查找不在另一个中的值?

时间:2015-02-08 20:33:36

标签: php arrays array-difference

这不像我预期的那样有效。我需要在$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中没有这些值。

0 个答案:

没有答案