Check array for partial match (PHP) [duplicate]

邮差的信 提交于 2019-12-22 09:10:18

问题


I have an array of filenames which I need to check against a code, for example

array("120_120_435645.jpg","150_150_312312.jpg","250_250_1232327.jpg");

the string is "312312" so it would match "150_150_312312.jpg" as it contains that string. If there are no matches at all within the search then flag the code as missing.

I tried in_array but this seems to any return true if it is an exact match, don't know if array_filter will do it wither...

Thanks for any advice...perhaps I have been staring at it too long and a coffee may help :)


回答1:


$filenames = array("120_120_435645.jpg","150_150_312312.jpg","250_250_1232327.jpg");
$matches = preg_grep("/312312/", $filenames);
print_r($matches);

Output:

Array
(
    [1] => 150_150_312312.jpg
)

Or, if you don't want to use regex, you can simply use strpos as suggested in this answer:

foreach ($filenames as $filename) {
    if (strpos($filename,'312312') !== false) {
    echo 'True';
    }
}

Demo!



来源:https://stackoverflow.com/questions/18338915/check-array-for-partial-match-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!