我正在尝试使用 Tumblr API,我相信它的 JSON。我正在尝试使用 Php 在下面的 URL 中获取“posts-total”并将其回显。我该怎么做?
http://example.tumblr.com/api/read/json?num=0
谢谢
Update:
我试图使用
$result = json_decode(file_get_contents('http://example.tumblr.com/api/read/json?num=0'));
$print_r($result);
echo $result[1];
我收到 500 错误。当我试图回显 $result 时,我什么也得不到。