I installed PHPSTUDY and wrote the code with notepad. All the Chinese characters displayed are garbled. What control is not installed properly?
钟毅2017-10-09 20:24:45
Remember to change all pages, otherwise INCULDE specifically to include the utf8 sentence. Of course, if the modification is not completed, Chinese will not be displayed, only GBK text will be displayed.
邦乔维2017-10-08 17:02:40
<?php
//Declare variable $shouji
$shouji = 'Sell a kidney for an iPhone';
//Put $shouji in double quotes and then echo what is the effect? ?
$str = "Will $shouji be displayed?";
//Enter $str to try
echo $str;
?>