我遇到了与此问题中概述的相同的问题: “数组”出现在 JSON 输出之前
PHP 的输出在 JSON 之前显示单词“Array”:
Array[{"item":{"ID":"1","idUser":"1",.......}}]
我曾尝试使用echo(..)
and print_r(..)
,但都显示单词“Array”。
public function render($content) {
header('Content-Type: application/json');
$json = json_encode($content);
echo($json); // also tried print_r($json)
return true;
}
$json
PHP 端的变量看起来不错 - 即Array[{"item":{"ID":"....
不仅仅是 [{"item":{"ID":"...
谁能给我解惑?!