0

可能重复:
使用 curl 获取 url 响应的值

我有如下的json url

www.example.com/hello.php?action=get&id=18&format=json

它将输出返回为{"id":18,"name":"Dharma"}.

如何使用 php curl 函数获取 name 属性?

我想要输出为“佛法”。

4

1 回答 1

2

您不需要 cURL,只需使用

$content = file_get_contents('http://www.example.com/hello.php?action=get&id=18&format=json‌'); 
$array = json_decode($str, TRUE); 
echo $array['name'];
于 2012-05-24T11:18:03.150 回答