$json = file_get_contents('php://input');
$obj = json_decode($json,true);
間違った変数を渡していると思います。 $json
を渡す必要があります json_decode
で 上記のように。
$json = file_get_contents('php://input');
$obj = json_decode($json,true);
間違った変数を渡していると思います。 $json
を渡す必要があります json_decode
で 上記のように。