特定の文字列に検索したい複数の文字が含まれているかどうかを確認するにはどうすればよいですか? 例:
$manywords = "apple orange pineapple banana cat";
if (!(strstr($manywords, 'apple'||'cat')))
{
echo "either word found";
}
strstr
次のように2回書くことなく関数を使用できる方法はありますか:
if (!((strstr($manywords, 'apple')||(strstr($manywords, 'cat')))
{
echo "either word found";
}