即使写在字符串的开头,而不仅仅是在中间或结尾,我也需要找到三个单词中的一个。这是我的代码:
<?php
$string = "one test";
$words = array( 'one', 'two', 'three' );
foreach ( $words as $word ) {
if ( stripos ( $string, $word) ) {
echo 'found<br>';
} else {
echo 'not found<br>';
}
}
?>
如果 $string 是“一次测试”,则搜索失败;如果 $string 是“test one”,则搜索是好的。
谢谢!