


Analysis of the causes and solutions of Chinese garbled characters in PHP_PHP Tutorial
1. The first is the encoding of the PHP web page
1. The encoding of the php file itself and the encoding of the web page should match
a. If you want to use gb2312 encoding, then php must output the header: header( "Content-Type: text/html; charset=gb2312"), add to the static page, and the encoding format of all files is ANSI, you can open it with Notepad, save as and select the encoding as ANSI, and overwrite the source file.
b. If you want to use utf-8 encoding, then php should output the header: header("Content-Type: text/html; charset=utf-8"), and 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 use editplus to save. 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 use iconv to transcode.
2. Data interaction between PHP and Mysql
The encoding of PHP and the database should be consistent
1. Modify the mysql configuration file my.ini or my.cnf. It is best to use utf8 encoding for mysql
<ol class="dp-xml"> <li class="alt"><span><span>[mysql] </span></span></li> <li> <span class="attribute">default-character-set</span><span>=</span><span class="attribute-value">utf8</span><span> </span> </li> <li class="alt"><span>[mysqld] </span></li> <li> <span class="attribute">default-character-set</span><span>=</span><span class="attribute-value">utf8</span><span> </span> </li> <li class="alt"> <span class="attribute">default-storage-engine</span><span>=</span><span class="attribute-value">MyISAM</span><span> </span> </li> <li><span>在[mysqld]下加入: </span></li> <li class="alt"> <span class="attribute">default-collation</span><span>=</span><span class="attribute-value">utf8_bin</span><span> </span> </li> <li> <span class="attribute">init_connect</span><span>=</span><span class="attribute-value">'SET NAMES utf8'</span><span> </span> </li> </ol>
2. Add mysql_query("set names 'coding'"); before the PHP program that needs to perform database operations. The encoding is consistent with the PHP encoding. If If the php encoding is gb2312, then the mysql encoding is gb2312. If it is utf-8, then the mysql encoding is utf8. In this way, PHP Chinese garbled characters will not appear when inserting or retrieving data
3. PHP is related to the operating system
The encoding of Windows and Linux is different. In the Windows environment, when calling PHP functions, if the parameters are utf-8 encoding, errors will occur, such as move_uploaded_file(), filesize(), readfile(), etc. These functions are often used when processing uploads and downloads. The following errors may occur when calling:
<ol class="dp-xml"> <li class="alt"><span><span>Warning: move_uploaded_file()[function.move-uploaded-file]:failed to open stream: Invalid argument in ... </span></span></li> <li><span> </span></li> <li class="alt"><span>Warning: move_uploaded_file()[function.move-uploaded-file]:Unable to move '' to '' in ... </span></li> <li><span> </span></li> <li class="alt"><span>Warning: filesize() [function.filesize]: stat failed for ... in ... </span></li> <li><span> </span></li> <li class="alt"><span>Warning: readfile() [function.readfile]: failed to open stream: Invalid argument in .. </span></li> </ol>
Although these errors will not occur when using gb2312 encoding in a Linux environment, the saved file name will be garbled and the file cannot be read. In this case, the parameters can be converted to the encoding recognized by the operating system. The encoding conversion can be done with mb_convert_encoding (character String, new encoding, original encoding) or iconv (original encoding, new encoding, string), so that the file name saved after processing will not be garbled, and the file can be read normally to achieve uploading and downloading of Chinese name files.
In fact, there is a better solution to PHP Chinese garbled code, which is completely separated from the system, and there is no need to consider what encoding the system is. You can generate a sequence of only letters and numbers as the file name, and save the original name with Chinese characters in the database. In this way, there will be no problem when calling move_uploaded_file(). When downloading, you only need to change the file name to the original name with Chinese characters. Chinese name. The code to implement downloading is as follows
<ol class="dp-xml"> <li class="alt"><span><span>header("Pragma: public"); </span></span></li> <li><span>header("Expires: 0"); </span></li> <li class="alt"> <span>header("Cache-Component: must-revalidate, </span><span class="attribute">post-check</span><span>=</span><span class="attribute-value">0</span><span>, </span><span class="attribute">pre-check</span><span>=</span><span class="attribute-value">0</span><span>"); </span> </li> <li><span>header("Content-type: $file_type"); </span></li> <li class="alt"><span>header("Content-Length: $file_size"); </span></li> <li> <span>header("Content-Disposition: attachment; </span><span class="attribute">filename</span><span>="$file_name""); </span> </li> <li class="alt"><span>header("Content-Transfer-Encoding: binary"); </span></li> <li><span>readfile($file_path); </span></li> </ol>
$file_type is the type of file, $file_name is the original name, $file_path is the address of the file saved on the service .
I hope the above-mentioned solutions to Chinese garbled characters in PHP can help everyone solve the problem.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
