我尝试了多种解决方案,但似乎没有一个对我有用基本上我拉着facebook页面喜欢并将它们放在一个数组中,然后我想显示该数组中的特定值,但我无法做到这一点无论如何,下面是我的代码:
<?php
$url = 'https://graph.facebook.com/22992739859?fields=name,fan_count&access_token=my access token';
$t = file_get_contents($url);
preg_match_all('!\d+!', $t, $matches);
print_r($matches [0]);
?>
,输出
Array ( [0] => 158060 [1] => 22992739859 )
我只想摆脱除[0]
之后的值以外的所有文字无论如何我能做到吗?我尝试了几种解决方案,但它们似乎都不适合我。
由于
答案 0 :(得分:0)
$ matches [0]获取$ matches数组的第0个索引,该数组恰好也是一个数组。您也可以将第0个索引作为格式。
$result = $matches[0][0];
print_r($result);