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.
norepadのファイルの一部をUTF-8に変更しましたが、Firefoxよりも非常に奇妙な文字が表示されていました。.phpファイルにcyrylliccharがあり、iamがUTF-8でファイルを保存しない場合は、「?????」を取得します。
しかし、Iamが現在抱えている問題は、Firefoxがスタンジチャーを表示することです。誰かが私を助けることができますか?
Webサーバーが実際に文字セットをUTF-8に設定していることを確認してください。これは、ブラウザ開発ツールで確認できます。確認すべき点:
php.iniの場合:
default_charset = "utf-8"
ヘッダーを設定するためのphpコード:
header('content-type: text/html; charset: utf-8');