Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
添加 PHP 后header("Content-type: text/plain");会添加一个空格。我将它用于漂亮的 JSON。
header("Content-type: text/plain");
我需要这个:
{ “代码”:“200”} }
但我明白了:
仔细查看您的 PHP 页面,您可能只是在其中(在您的 PHP 标记之外)有您没有意识到的空白。}(而且你的 JSON 中有一个额外的......)
}
如果您使用的是 PHP 5.4 或更高版本,则可以使用JSON_PRETTY_PRINTflag。
JSON_PRETTY_PRINT
但是我也认为你可能在打印之前有一个空格,如果不是在你的主页中,也许在functions.php.
functions.php