在eclipse中進行php開發中文亂碼問題

技術小阿哥發表於2017-11-27

一    將eclipse中的編碼都設為UTF-8,一共有3個地方需要設定

    1,Window –> Preferences –> General –> Content Types,將這裡面的每一項的預設編碼都設為“UTF-8”,特別是 Text 中的 PHP Source File ,在“Default encoding”的右邊填寫


    2,Window –> Preferences –> General –> Editors –> Text Editors –> Spelling


    3,Window –> Preferences –> General –> Workspace


二 第一種方式設定後還是出現亂碼,可以考慮在出現亂碼的檔案中指定編碼格式

1
2
3
4
5
6
7
8
9
10
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    </head>
<body> 
    <?php
        echo "haha";
    ?>
</body>
</html>

三 看看是否是mysql等相關軟體的設定問題

本文轉自 pangfc 51CTO部落格,原文連結:http://blog.51cto.com/983836259/1649725,如需轉載請自行聯絡原作者


相關文章