我有这样的网址
本地主机/ handikap /插入/ index.php的JSON = {" ID":123456}?
我希望在编写像这样的代码时得到json的响应
$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
但这不会返回任何东西请帮帮我
答案 0 :(得分:1)
如果您使用的是GET方法
$data = $_GET['json'];
$data = json_decode();
print_r($data);
如果您使用的是POST方法
$data = file_get_contents('php://input');
$data = (array)json_decode($data,true);