##状況
PHPのstrposを使って環境依存文字の判定をするメソッドを作っております。
##現状
public static function CheckChar (string $target) : bool { $chars = "㈱㈲㈹㍾㍽㍼㍻㍉ ㎜ ㎝ ㎞ ㎎ ㎏ ㏄ ㍉㌔ ㌢ ㍍㌘ ㌧ ㌃ ㌶ ㍑ ㍗ ㌍ ㌦ ㌣ ㌫ ㍊ ㌻"; $result = strpos($target, $chars); if($result !== false){ return true; }else{ return false; } }
$charsに環境依存文字を格納していて、それらを判定に使いたいのですがなかなかうまくいかず、詰まっております。
##したいこと
$test = "㈱テスト会社";
CheckChar ($test);
→true
のように文字列の中に環境依存文字が含んでいたらtrueを返したい。
回答3件
あなたの回答
tips
プレビュー