Heim  >  Artikel  >  Backend-Entwicklung  >  php读取mysql中文乱码解决方法

php读取mysql中文乱码解决方法

WBOY
WBOYOriginal
2016-07-25 09:12:221158Durchsuche

例子,在如下程序中解决中文乱码的问题。

  1. 数据测试
  2. $link = mysqli_connect('localhost','root','','happy');
  3. if (!$link) {
  4. die('Could not connect to MySQL: ' . mysql_error());
  5. }
  6. //中文乱码解决--设置默认编码
  7. $link->query("SET NAMES 'UTF8'");
  8. $sql = "select * from subway limit 5";
  9. $result = mysqli_query($link, $sql);
  10. while($row = mysqli_fetch_array($result)){
  11. echo $row['id'] . " : " .$row['code'] . " : " . $row['name'];
  12. echo "
    ";
  13. }
  14. mysqli_close($link);
  15. ?>
复制代码

乱码前: 1 : subwayLine1 : ?? 2 : subwayLine1 : ??? 3 : subwayLine1 : ??? 4 : subwayLine1 : ???? 5 : subwayLine1 : ???? 解决中文乱码后结果: 1 : subwayLine1 : 莘庄 2 : subwayLine1 : 外环路 3 : subwayLine1 : 莲花路 4 : subwayLine1 : 锦江乐园 5 : subwayLine1 : 上海南站

主要是这句: $link->query("SET NAMES 'UTF8'"); 指定默认字符编码。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn