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.
これを作成しましたが、ラテン文字セットでのみ機能します
function str_ink($str){ $arr = str_split ($str); $new=array(); foreach($arr as &$a){ if(ctype_alnum($a)){ array_push($new,$a); } } }