PHPでアクセントを置換する方法
mb_ereg_replace()関数を使用する方法:$text = "あいうえお"; $text = mb_ereg_replace('[ぁ-ん]', '', $text); echo $text; // 結果: いうえお>>More
mb_ereg_replace()関数を使用する方法:$text = "あいうえお"; $text = mb_ereg_replace('[ぁ-ん]', '', $text); echo $text; // 結果: いうえお>>More