0

我试图使用 php 从这个 Facebook 图形调用中获取共享计数,但我没有运气:

http://graph.facebook.com/?ids=http://google.com

试试 1

$content = file_get_contents("http://graph.facebook.com/?ids=http://google.com");
$parsedJson = json_decode($content, true);
echo $parsedJson['shares'];

试试 2

$content = file_get_contents("http://graph.facebook.com/?ids=http://google.com");
$parsedJson = json_decode($content, true);
echo $parsedJson->shares;

我究竟做错了什么?

4

2 回答 2

3

尝试

echo $parsedJson["http://google.com"]['shares'];
于 2013-07-31T16:33:55.733 回答
0

这会奏效!

echo ($parsedJson->{'http://google.com'}->shares);
于 2013-07-31T16:46:34.937 回答