我有 PHP 应用程序尝试使用 'file_get_contents' 函数在 'php://input' 中获取 post JSON。只返回空字符串。下面是完整的代码行。
$_PUT = json_decode(file_get_contents("php://input"), true);
或者我需要更改任何 apache/php 设置?
我有 PHP 应用程序尝试使用 'file_get_contents' 函数在 'php://input' 中获取 post JSON。只返回空字符串。下面是完整的代码行。
$_PUT = json_decode(file_get_contents("php://input"), true);
或者我需要更改任何 apache/php 设置?