常见的问题是浏览器在JSON之前打印“其他内容”,无论它是可读还是 不可读 (不可见)字符。尝试做这样的事情:
<?php//at the very beginning start output buffereingob_start();// do your logic here// right before outputting the JSON, clear the buffer.ob_end_clean();// now printecho json_enpre(array("id" => $realid, "un" => $username, "date" => $date));?>
现在,所有补充数据(JSON之前的数据)都将被丢弃,您应该让它正常工作…
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)