Home  >  Article  >  Backend Development  >  php opens garbled characters

php opens garbled characters

藏色散人
藏色散人Original
2019-10-17 10:08:472403browse

php opens garbled characters

#php opens with garbled characters?

Solution to garbled opening of php:

1. The encoding of the php file itself and the encoding of the web page should match

a. If If you want to use gb2312 encoding, then PHP should output the header:

header("Content-Type: text/html; charset=gb2312"), and add 027208bd31a27499c8972c555a5a35e9, the encoding format of all files is ANSI, you can open it with Notepad, save as, select the encoding as ANSI, and overwrite the source file.

b. If you want to use utf-8 encoding, then PHP needs to output the header:

header(“Content-Type: text/html; charset=utf-8")

Add 4eae7a346764e056b1116a7092b7f92f, the encoding format of all files is utf-8.

Saving as utf-8 may be a bit troublesome. Generally, utf-8 files will have BOM at the beginning. If you use session, there will be problems. You can save it with editplus. In editplus, go to Tools->Parameter Selection- >File->UTF-8 signature, select Always delete, then save to remove the BOM information.

2. PHP itself is not Unicode. All functions such as substr must be changed to mb_substr (mbstring extension needs to be installed); or iconv can be used to transcode.

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of php opens garbled characters. 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
Previous article:php print error messageNext article:php print error message