Ben belirli bir etki alanı adı için google endekslenmiş sayfaların sayısını, bir PHP komut dosyası aracılığıyla bunu nasıl yapacağız bulmak gerekir?
Bu yüzden,
foreach ($allresponseresults as $responseresult)
{
$result[] = array(
'url' => $responseresult['url'],
'title' => $responseresult['title'],
'abstract' => $responseresult['content'],
);
}
what do i add for the estimated number of results and how do i do that? i know it is (estimatedResultCount) but how do i add that? and i call the title for example this way: $result['title'] so how to get the number and how to print the number?
Thank you :)