Home > Article > Backend Development > How to set encoding in php
Define a php page in the php header as UTF encoding or GBK encoding.
Related recommendations: "PHP Tutorial"
The php page is utf encoded:
header("Content-type: text/html; charset=utf-8");
The php page is gbk encoded:
header("Content-type: text/html; charset=gb2312");
php page is big5 encoded:
header("Content-type: text/html; charset=big5");
Usually, just put the above code on the home page of the php page.
The above is the detailed content of How to set encoding in php. For more information, please follow other related articles on the PHP Chinese website!