gpt4 book ai didi

php - 谷歌搜索 : Scrape results page in PHP for total results

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:57:16 25 4
gpt4 key购买 nike

是否可以使用 PHP 抓取 Google 搜索结果页面以提取找到的搜索结果总数?

如果是这样,我该怎么做呢?

谢谢

最佳答案

尝试使用 phpsimplehtmlparser

$search_query = 'google';
$url = sprintf('http://www.google.com/search?q=%s', $search_query);
$html = file_get_html($url);
$results = $html->find('#resultStats/b', 2)->innertext;

echo sprintf('Google found %s results for "%s"', $results, $search_query);

关于php - 谷歌搜索 : Scrape results page in PHP for total results,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2560508/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com