小程序php腾讯云中文显示问号乱码?
header(‘Content-Type:text/html; charset=UTF-8’);
$myconn=mysqli_connect(“localhost”,“root”,“oXcr7hMe”,“xiaochengxu”);
mysql_query(“set names ‘utf8’”,$myconn);
$sql=“SELECT * FROM home”;
$result=mysqli_query($myconn,$sql) or die(mysqli_error($myconn));
$listT=mysqli_fetch_all($result,MYSQLI_ASSOC);
echo json_encode($listT);
有人解决一下吗