Home  >  Article  >  Backend Development  >  What to do if Chinese garbled characters appear in iis7 php

What to do if Chinese garbled characters appear in iis7 php

藏色散人
藏色散人Original
2021-05-10 09:39:351941browse

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.

What to do if Chinese garbled characters appear in iis7 php

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(&#39;Content-type: text/html; charset=UTF8&#39;); // 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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn