Ajax technology has been used in the PHP project I wrote recently, and the user experience has been greatly improved, but at the same time, a new problem has been introduced, that is, the Chinese in the responseText returned by Ajax will mostly be garbled, even if I specify the page encoding as UTF -8.
This is because XMLHttp decodes the responseBody according to UTF-8 encoding when processing the returned responseText. If the data stream sent by the server is indeed UTF-8 encoding, then the Chinese characters will be displayed correctly, but if it is GBK Or the above situation will occur with other encodings.
The solution is to add a header to the data stream returned by the server to indicate the encoding of the sent data stream, so that XMLHttp will not mess up.
header('Content-Type:text/html; charset=GB2312');
The above is the solution to the Ajax Chinese garbled problem in PHP. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!