-1
我的php文件在瀏覽器中正常工作。php返回源代碼而不是json字符串
$array = array("message" => "Not found", "status_code" => 404);
echo json_encode($array);
這個作品
echo file_get_contents("http://localhost/file.php");
但它返回的源代碼時,我僅使用文件名
echo file_get_contents("file.php");
響應
"Not found", "status_code" => 404); echo json_encode($array);