What should I do if the php title displays Chinese garbled characters?

藏色散人
Release: 2023-03-11 16:18:01
Original
2398 people have browsed it

Solution to the problem that the php title displays Chinese garbled characters: 1. Set "Content-Type" before the title in the HTML file; 2. Add "header("Content-Type: text/html at the beginning of the PHP code ;charset=utf-8");".

What should I do if the php title displays Chinese garbled characters?

The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer

What should I do if the php title displays Chinese garbled characters?

1. Add a line after the head in the HTML file and before the title:

Copy after login

2. Add a line at the beginning of the PHP code:

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

Related introduction :

UTF-8 (8-bit, Universal Character Set/Unicode Transformation Format) is a variable-length character encoding for Unicode. It can be used to represent any character in the Unicode standard, and the first byte in its encoding is still compatible with ASCII, so that the original software that processes ASCII characters can continue to be used without or with only a few modifications. Therefore, it has gradually become the preferred encoding for email, web pages, and other applications that store or transmit text.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of What should I do if the php title displays Chinese garbled characters?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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
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!