Home >Backend Development >PHP Problem >What to do if Chinese garbled characters appear in iis7 php
iis7 Solution to Chinese garbled php: First open the corresponding PHP file; then write "header('Content-type: text/html; charset=UTF8');" at the beginning of the file.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
iis7 php Chinese garbled, php output text garbled solution Method
Solution to garbled text output from php:
Write at the beginning of the php file:
<?php header('Content-type: text/html; charset=UTF8'); // UTF8不行改成GBK试试,与你保存的格式匹配 ?>
Recommended study: "PHP Video Tutorial"
The above is the detailed content of What to do if Chinese garbled characters appear in iis7 php. For more information, please follow other related articles on the PHP Chinese website!