有人可以解释这种行为吗?
在这种情况下:
header("Content-type: text/html");
echo json_encode("error_101");
有用。
在另一种情况下:
header("Content-type: application/json");
echo json_encode("error_101");
它不起作用(无限加载)。
但是如果我将一个数组传递给 json_encode,它会以两种方式工作,所以这个问题只存在于 json values。
这似乎是一个错误!