一切正常,但我无法从网站(法鲁)检索结果总数..
<?php
if (isset($_GET['q']))
{
$q = $_GET['q'];
$p = $_GET['p'];
$page = file_get_contents('http://www.faroo.com/api?q=' . $q
. '&start=' . $p . '&l=en&key='.$myownkey.'&src=web&f=json');
// echo $page->{'count'}; //this too not working
$dat_array = json_decode($page, true);
echo $dat_array->{'count'}; //not woking.
}
?>
我哪里错了?