我正在尝试从网址获取JSON。我的代码正在运行,但我认为我可以做得更好。 (删除json_decode或json_encode)。现在这就是我所拥有的:(编辑:我仍然想使用卷曲)
<?php
$curl = curl_init('url');
curl_setopt($curl, CURLOPT_URL, 'url');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($curl);
curl_close($curl);
$data = json_decode($result, true);
echo json_encode($data["name"]);
?>
答案 0 :(得分:0)
你可以试试这个:
$data = json_decode(file_get_contents('php://input'));
print_r($data);