我正在编写一些简单的 PHP 来接收来自另一个系统的带有 JSON 有效负载的 POST。该请求是 Content-Type: application/json。
我只是试图将 json 转储到 txt 文件中作为起点,但这并没有发生。这是PHP文件,任何建议/更正将不胜感激!
<?php
ini_set("display_errors", "On");
session_start();
$raw_json = file_get_contents('php://input');
$cooked_json = json_decode($raw_json);
$myfile = fopen('/home/wgordon/log.txt','a');
$fp = fwrite($myfile, $cooked_json);
fclose($myfile);
?>