PHP 的 stristr
函数不支持数组操作
例如,如果您有一个字符串数组,并希望找到每个字符串中第一个出现的某个子字符串,您可以这样做:
$strings = ['hello world', 'goodbye world', 'hello PHP']; $search = 'world'; $result = array_map(function($string) use ($search) { return stristr($string, $search); }, $strings); print_r($result);
这将输出:
Array ( [0] => world [1] => world [2] => )
在这个例子中,我们使用了 array_map
函数来遍历数组中的每个字符串,并将 stristr
应用于每个字符串。use
关键字用于将外部变量 $search
传递给匿名函数。