Json解析第1行错误:<html比;& lt;身体的祝辞


json parse error on line 1: < html > < body >

我不知道为什么代码不工作,它应该编码为json ?当我从Android studio的app中调用这个PHP代码链接时,它不工作并显示错误消息,它显示以下代码:

< html > < body > < script type = "text/javascript"
src = "/aes.js" > < /script><script>function toNumbers(d){var e=[];d.replace(/ (..) / g,
function(d) {
    e.push(parseInt(d, 16))
});
return e
}
function toHex() {
for (var d = [], d = 1 == arguments.length && arguments[0].constructor == Array ? arguments[0] : arguments, e = "", f = 0; f < d.length; f++) e += (16 > d[f] ? "0" : "") + d[f].toString(16);
return e.toLowerCase()
}
var a = toNumbers("f655ba9d09a112d4968c63579db590b4"),
b = toNumbers("98344c2eee86c3994890592585b49f80"),
c = toNumbers("fafd97787619720460a70e34d00aedb4");
document.cookie = "__test=" + toHex(slowAES.decrypt(c, 2, a, b)) + "; expires=Thu, 31-Dec-37 23:55:55 GMT; path=/";
location.href = "http://gmarket.byethost5.com/json_getS.php?i=2"; 

也在jsonlint网站测试php URL时显示相同的上面,并返回这个错误:

解析第1行错误:

<^期待'STRING',"数量","空","真正的"、"假 ', '{', '[', 有"定义")

this php link:http://gmarket.byethost5.com/json_getS.php

我使用的PHP代码:

<?php  
$host= "sql201.byethost5.com";
$user = "xxxxxxx";  
$pass = "xxxxxxx";  
$db = "xxxxxxx";  
$sql="select * from customer";
$con = mysqli_connect($host,$user,$pass,$db);
$result= mysqli_query($con,$sql);
$response = array();
while ($row = mysqli_fetch_array($result))
{
 array_push($response,array("name"=>$row[0],"phone"=>$row[1] ));
}
echo json_encode(array("customers"=>$response));
mysqli_close($con);
?> 

你的Json是正确的,问题是你返回的HTML,你没有告诉浏览器内容是Json。

使用

header('Content-Type: application/json');
echo json_encode($response);

我使用了另一个网站托管域(000webhost)及其工作没有任何问题,相同的代码,我认为问题来自(byethost)而不是来自代码。