0

strops文字列に 2 つの特定の単語が含まれていないかどうかを確認する方法を教えてください。(?if)

$phrase = “how to use strops?”
if(strpos($phrase, "?|if") === false) //Is there a way I can detect the presence of
{               //either words in a sentence using one line of code that has strpos

     echo “neither word is found”;
}
4

2 に答える 2

2

strpos()正規表現をサポートしていません。したがって、正規表現を使用するか(次のようpreg_match()に洗練されていないものを実行します:

$phrase = "how to use strpos";
$words = array('foo', 'bar');

$matches = 0;
foreach( $words as $word ) {
   $matches += ( strpos( $phrase, $word ) !== false ) ? 1 : 0;
}

printf("%d words matches", $matches);
于 2013-07-02T14:27:17.163 に答える