php中文乱码问题分析及解决办法
中文乱码问题产生的原因,主要就是字符编码设置问题;
首先,mysql数据库安装的时候字符编码要选择正确,最好选择utf-8比较保险。如果安装时没有设置正确,找到mysql的安装目录,修改my.conf配置文件中的字符设置,打开文件,应该一个是在mysqll下面,一个是在server下面的。
如果是php页面的中文乱码,也就是非数据库查询出来的数据,HTML页面静态的部分出现乱码,应该使用 header("content-type:text/html; charset=utf8") 来设定页面编码。
可能用到的命令:
1>数据库导出的命令:mysql -u root -p 数据库名 > d:\sql.sql
2>数据库导入命令:source D:\sql.sql
3>mysql查询字符集设定的命令:show variables like '%set%';
4>mysql设定字符集:set name utf8
【注意】mysql导出的数据库不要用记事本打开,因为微软的记事本编码使用的是utf-8不是withoutBOM,会出问题。
如果数数据库查出来的值显示乱码,确定数据是否为从其他版本的数据库导出又导入你自己的数据库的。因为mysql数据库服务器的版本不同,直接导入数据就有可能出现问题。例如我的mysql数据库的数据在本地运行中文完全没有问题,但是当移植到新浪SAE上面的时候,因为跟他的mysql服务器版本不同,使用phpmyadmin导入sql数据,虽然在导入的时候已经选好的字符集为utf-8, phpmyadmin中查看中文也完全没有问题,但是在打开页面的时候,所有从数据库中查处的数据中,全部都是诸如问号的乱码。
网上的解决办法是在 执行每条sql语句之前使用mysql_query("set name utf8");但是加入这句话却报错,最后原因是在mysql5.0之后,mysql的函数基本都废弃了,而是使用它的扩展函数mysqli, mysqli_query($link,'utf8');进行设置,这样中文乱码的问题就解决了。
期间还有一个问题就是,如果不用上传到服务器的数据,而是自己再通过网页重新添加一些中文信息,也是可以正常显示的,而如果直接在数据库中使用insert与语句插入中文的数据,还是不能正常显示。 具体问题不详 目前估计还是因为数据库版本不同造成的。
总的解决办法就是:数据库编码设置正确,页面编码设置正确,在php数据插入数据库的时候进行严谨的处理,对于可能出现的问题,严格处理。

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

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
