でUTF-8エンコードされたファイルを取得する私はPHPのフォルダから.html
または.txt
ファイルを取得したいのですが、このファイルはUTF-8でエンコードされ、そして私が$html=file_get_contents('somewhere/somewhat.html');
を使用し、そのI echo $html;
後ならば、このウォン」 UTF-8でエンコードしてください。私は多くの " "を本文に見ます。何か案が?どうすればこれを防ぐことができますか?どのようにPHP
Q
どのようにPHP
0
A
答えて
0
あなたは自分をUTF8に変換する必要があります。これを行うには、mb_convert_encoding()とmb_detect_encoding() PHP関数を使用します。このよう
、
$html=file_get_contents('somewhere/somewhat.html');
$html=mb_convert_encoding($html, 'UTF-8',mb_detect_encoding($html, 'UTF-8, ISO-8859-1', true));
echo $html;
mb_convert_encoding()は、文字エンコーディングを
mb_detect_encodingを()は、文字エンコーディングを検出する変換
0
はあなたの文字列にiconvを使用してみてください: http://php.net/manual/pl/function.iconv.php
その他のソリューション: http://php.net/manual/en/function.mb-convert-encoding.php
関連する問題
- 1. PHP - どのようにPHP
- 2. はどのようにPHP
- 3. どのようにPHP
- 4. どのようにPHP
- 5. はどのようにPHP
- 6. どのようにPHP
- 7. どのようにPHP
- 8. どのようにPHP
- 9. がどのようにPHP
- 10. はどのようにPHP
- 11. どのようにPHP
- 12. はどのようにPHP
- 13. どのようにPHP
- 14. どのようにPHP
- 15. はどのようにPHP
- 16. がどのようにPHP
- 17. どのようにPHP
- 18. がどのようにPHP
- 19. どのようにPHP
- 20. どのようにPHP
- 21. どのようにPHP
- 22. どのようにPHPコード
- 23. どのようにPHP
- 24. どのようにPHP
- 25. どのようにPHP
- 26. がどのようにPHP
- 27. どのようにPHP
- 28. どのようにPHP
- 29. どのようにPHP
- 30. どのようにPHPのmysqlの