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.
preg_replace次のコードによると、複数の空白を削除することを意図した単純なものがどのようにして文字àを疑問符に変えることができるのか疑問に思っています:
preg_replace
à
$str = 'nnn à nnn é nnn'; echo preg_replace('/\s+/', ' ', $str) . "\n"; // outputs 'nnn ? nnn é nnn'
これは、OSX 10.8.4 を使用する Mac で発生します。何か案が?
次のタグを使用して、HTML ページのエンコーディングを UTF-8 に変更できます。
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
おそらくエンコーディングに問題があるため、そのタグでおそらく修正されます。