in the head tag to set UTF-8 encoding."/> in the head tag to set UTF-8 encoding.">
search
HomeBackend DevelopmentPHP ProblemGarbled characters appear in php

Garbled characters appear in php

Oct 21, 2019 pm 02:27 PM
phpGarbled characters

Garbled characters appear in php

First method: Solve the problem of Chinese garbled characters in HTML

If your HTML file has garbled characters, then you can Add UTF8 encoding (international encoding) to the head tag: UTF-8 has no national encoding, that is, it is independent of any language and can be used in any language.

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

Second: HTML and PHP mixed page solution

How to mix HTML and PHP, in addition to following the operations mentioned in the first method In addition, you also need to add this code at the top of the PHP file:

<?php
header("content-type:text/html;charset=utf-8");         //设置编码
 
?>

The third type: Chinese garbled problem in pure PHP pages (the data is static)

If your PHP page is garbled, just add the following code at the beginning of the page.

<?php
header("content-type:text/html;charset=utf-8");         //设置编码
?>

The fourth type: PHP Mysql Chinese garbled problem

In addition to following the operations mentioned in the third type, you also need to query/modify your data /Add database encoding before adding. Moreover, it is worth noting that the UTF8 here is different from the previous one, there is no horizontal line in the middle.

<?php
   mysql_query(&#39;SET NAMES UTF8&#39;);
   //接下来的就是查出数据或者修改,增加

Recommended tutorial: PHP video tutorial

The above is the detailed content of Garbled characters appear in php. 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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.