Home > Article > Backend Development > phpstudy Chinese garbled code
Problem:
After using phpstudy to write the .php file, the form request result is garbled.
Solution:
Just add some code to the header of the .php file.
<?php header('Content-Type: text/html; charset=utf-8'); ?>
Recommended tutorial: PHP video tutorial
The above is the detailed content of phpstudy Chinese garbled code. For more information, please follow other related articles on the PHP Chinese website!