php opens garbled characters

藏色散人
Release: 2023-02-27 06:12:01
Original
2487 people have browsed it

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 , 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")
Copy after login

Add , 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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!