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.
少し平凡すぎる質問をしているのかもしれませんが、PHP を使用して文字列にワイルドカード (*) 文字が含まれているかどうかを確認する方法がわかりません。
文字列の例: *bcdOR ab*dORabc*
*bcd
ab*d
abc*
どの PHP 関数を使用しようとしても、予期せぬ動作をします。ワイルドカード文字が文字列に含まれているかどうかを知る必要があるだけです。返信ありがとうございます!
if (strpos($mystring, '*') === false) { echo "Wildcard was not found in the string '$mystring'"; } else { echo "Wildcard was found in the string '$mystring'"; }
http://php.net/manual/en/function.strpos.phpの例に基づく