search
HomeBackend DevelopmentPHP TutorialSolution to garbled characters in PHP character set encoding_PHP Tutorial
Solution to garbled characters in PHP character set encoding_PHP TutorialJul 15, 2016 pm 01:30 PM
phpGarbled charactersAppearMethodandcharacter setdataChinese characterofcodingsolvepage

Either the original Chinese characters on the page and the Chinese characters taken out from the database are all garbled; or one of the original Chinese characters and the Chinese characters in the database is displayed normally, while the other is garbled. Very annoying and irritating! The problem needs to be solved step by step. Before actually following the methods below, you need to configure your web server to integrate with PHP so that you can finally debug your PHP program. We take the common GB2312 and UTF-8 character sets as examples to test and illustrate. The browser is IE7.0.

Solution to the garbled original Chinese characters on the page

I won’t go into details about the principle of PHP character set encoding. Search the Internet for the string "PHP garbled code", and the whole frame will be full. articles for everyone to read. What I am most concerned about is how to solve this practical problem. My favorite text editor to use is UltraEdit, not only because it can do hex editing, but also because it supports multi-encoding documents. To solve this problem, you need to use this feature of UltraEdit.

Open Chinese Windows, use UltraEdit to create a text file, and manually enter a PHP page file. The file content is as follows. Save it as a test1.php file. Note that when saving, select "Default" in the "Format" drop-down box - pay special attention here.

<ol class="dp-xml"><li class="alt"><span><span class="tag"><span> </span><span class="tag-name">Html</span><span class="tag">></span><span> </span></span><li><span class="tag"><span> </span><span class="tag-name">head</span><span class="tag">></span><span> </span><li class="alt"><span class="tag"><span> </span><span class="tag-name">title</span><span class="tag">></span><span>页面标题</span><span class="tag"><span> /title</span><span class="tag">></span><span> </span><li><span class="tag"><span> </span><span class="tag-name">META</span><span> </span><span class="attribute">http-equiv</span><span>=</span><span class="attribute-value">Content</span><span>-Type </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"text/html; charset=gb2312"</span><span class="tag">></span><span> </span><li class="alt"><span class="tag"><span> /head</span><span class="tag">></span><span> </span><li><span class="tag"><span> </span><span class="tag-name">Body</span><span class="tag">></span><span> </span><li class="alt">
<span>电脑学习网:</span><span class="tag"><span> </span><span class="tag-name">br</span><span class="tag">></span><span> </span><li><span class="tag"><span> /body</span><span class="tag">></span><span> </span><li class="alt"><span class="tag"><span> /html</span><span class="tag">></span><span> </span></span></li></span></li></span>
</li></span></li></span></li></span></li></span></span></li></span></li></span></li></ol>

Open this page of the website with IE browser. As you can see, the page displays normally. Under the "View"/"Encoding" menu of the IE browser ("Automatic selection" is checked), the character encoding is GB2312.

[Displays normally under Firefox 2.0. ]

Then, under the "File" menu of UltraEdit, select "Save As", select "UTF-8" as the format, and the file name is test2.php. Open this page with IE browser. As you can see, the page displays normally (in fact, the English font has changed slightly). I saw under the "View"/"Encoding" menu of the IE browser ("Automatic selection" was checked) that the character encoding was UTF-8, which changed automatically! Note: This sentence has not been modified, but the browser automatically recognizes the real PHP character set encoding! It seems that IE is quite smart, which also shows that IE's automatic identification of character sets takes precedence over the definition of charset=xxx in the METE tag.

[Garbled characters are displayed under Firefox 2.0. ]

Add the sentence

<ol class="dp-xml">
<li class="alt"><span><span class="tag"></span><span class="tag-name">php</span><span> </span></span></li>
<li><span>header("Content-Type:text/html;</span></li>
<li>
<span class="attribute">charset</span><span>=</span><span class="attribute-value">utf</span><span>-8");  </span>
</li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

Save the page file again, and select "Default" in the "Format" drop-down box. The file name is test3.php. Use IE to open the file on the website, and this time I see that in addition to the English letters, the Chinese characters have become garbled! At the same time, I saw under the "View"/"Encoding" menu of the IE browser ("Automatic selection" was checked) that the character encoding is UTF-8, which has been forcibly changed.

The reason why Chinese characters are garbled is because the original GB2312 encoding is forced to be displayed in UTF-8 encoding, so garbled characters appear. At this time, the GB2312 encoding is manually specified in the browser, and the Chinese characters on the page are displayed normally again (this cannot be done when actually creating the page. The viewer must choose the PHP character set encoding. One is that the viewer may not know how to choose at all. Encoding, what encoding to choose, and it seems that we are too good!).

[Garbled characters are displayed under Firefox 2.0. ]

Add the sentence

<ol class="dp-xml"><li class="alt"><span><span class="tag"><span> ?php  </span></span><li><span>header("Content-Type:text/html;</span></li>
<li>
<span class="attribute">charset</span><span>=</span><span class="attribute-value">GB2312</span><span>");  </span>
</li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li></span></li></ol>

Save the page file again, and select "UTF-8" from the "Format" drop-down box ”, the file name is test4.php. Use IE to open the file on the website, and it's strange: I see that the Chinese characters on the page are displayed normally, not the expected garbled characters? ! Under the "View"/"Encoding" menu of the IE browser ("Automatic selection" is checked), the PHP character set encoding is still UTF-8 and has not been forcibly changed to the GB2312 character set.

At this time, I manually specified the GB2312 encoding in the browser and found that the IE browser could not manually specify the encoding. It seems that the IE browser pays special attention to the UTF-8 character set. Regardless of whether it is specified in the META tag or the PHP statement, the IE browser cannot display garbled Chinese characters.

[Garbled characters are displayed under Firefox 2.0. ]

To summarize: The above tests were mainly conducted under IE7.0, the Web server was IIS6.0 under Windows Server 2003, and the PHP version was 4.4.7. It can be seen that IE7.0 has done a lot of additional automatic processing work in order to correctly identify the character set to show its intelligence and friendliness. Sometimes being too diligent can overwhelm us. Since the problem of garbled Chinese characters is related to different browsers and their different versions, web servers, background scripts and different character sets, the problem is particularly complicated. As a web programmer, you can focus mainly on factors related to yourself. There is no need to become an expert in PHP character set encoding. In order to be compatible with the currently popular IE and FF browsers, we can process our PHP code in the following simple ways:

1. The real character set of the page should be consistent with that specified by the META tag;

2, you can also use the header("Content-Type:text/html;charset=xxx"); statement to specify the character set, but it cannot conflict with the real character set of the character, nor with the META tag. (Although test results show that when header() conflicts with META, header() takes precedence over the character set specified by META, because according to HttpWatch Basic tracking, after header() specifies the character set, the IE browser Type will be clear Get character set specification, but there is no guarantee that other non-mainstream browsers will do the same. )

3. The PHP character set encoding cannot conflict with the character set of the characters retrieved from the database. Otherwise, the page will have the problem of all or part of the Chinese characters being garbled and the Chinese characters retrieved from the database being garbled.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446271.htmlTechArticleEither the original Chinese characters on the page and the Chinese characters taken out from the database are all garbled; or the original Chinese characters and the database Chinese characters are displayed together. If it is normal, the other one will become garbled. Very annoying and irritating! ...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool