我不知道为什么代码不起作用,它应该编码为json? 当我从Android工作室的应用程序调用此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行的解析错误:&lt; html&gt; &LT;身体&gt; &LT; ^期待'STRING', 'NUMBER','NULL','TRUE','FALSE','{','[',''undefined')
这个php链接: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);
?>
答案 0 :(得分:0)
您的Json是正确的,问题是您返回的HTML,您并没有告诉浏览器该内容是Json。
使用
header('Content-Type: application/json');
echo json_encode($response);
答案 1 :(得分:0)
我使用了另一个虚拟主机域名(000webhost)并且它的工作没有任何问题,相同的代码,我认为来自(byethost)的问题不是来自代码。