タグ付けされた質問 「strpos」

14
strposで配列を針として使用する
strpos文字列を検索するときに、針の配列にをどのように使用しますか?例えば: $find_letters = array('a', 'c', 'd'); $string = 'abcdefg'; if(strpos($string, $find_letters) !== false) { echo 'All the letters are found in the string!'; } これを使うと動かないので、こんなものがあったらいいのに
89 php  arrays  strpos 

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.