解决中文乱码问题(Ubuntu) 皇星客栈

<html>
<body>
<meta http-equiv=Content-Type content="text/html; charset=utf-8"> //在这里
<?php
$tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
echo "明天是".date("Y/m/d", $tomorrow);
?>

</body>
</html>

原文地址:https://www.cnblogs.com/huangxingkezhan/p/2784835.html