Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単語が一連の文字のどこかにあるかどうかを調べる方法を探しています。たとえば、「looking」という単語が「hereisthewordim* looking* for」にある場合
if( strpos("looking", "hereisthewordimlookingfor") !== false) { echo "true"; }
パラメータを置き換える必要があります。
strpos("hereisthewordimlookingfor", "looking")
私はあなたがこれを探していると思います:
if(stristr("hereisthewordimlookingfor","looking")) { echo "true"; };