php uses header to set the encoding method: add the code [header("content-type:text/html; charset=xxx")] at the head of the script. If you want to set UTF-8 encoding, the value of the charset attribute should be UTF-8.
The header() function sends raw HTTP headers to the client.
(Recommended tutorial: php graphic tutorial)
Example:
header("content-type:text/html; charset=xxx");
Implementation code:
The php page is utf encoded
header("Content-type: text/html; charset=utf-8");
(Video tutorial recommendation: php video tutorial)
php page is gbk encoded
header("Content-type: text/html; charset=gb2312");
php page is big5 Coding
header("Content-type: text/html; charset=big5");
The above is the detailed content of How to use header to set encoding in php. For more information, please follow other related articles on the PHP Chinese website!