0
一切都工作正常,但我無法檢索網站(faroo)結果的總數..無法檢索網站的搜索結果
<?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.
}
?>
我要去哪裏錯了?
'$ page'的內容是什麼 – srain