如何将PHP(simple_html_dom)用于Google专利?

时间:2015-01-07 09:02:41

标签: php simple-html-dom

我想获得谷歌专利的结果,任何人都可以提供帮助吗?

这是谷歌搜索的一个例子,

<?php
require_once('simple_html_dom.php');
$url  = 'https://www.google.com/search?hl=en&q=facebook&num=1';
$html = file_get_html($url);
$linkObjs = $html->find('h3.r a');

foreach ($linkObjs as $linkObj) {
    $title = trim($linkObj->plaintext);
    $link  = trim($linkObj->href);

    // if it is not a direct link but url reference found inside it, then extract
    if (!preg_match('/^https?/', $link) && preg_match('/q=(.+)&amp;sa=/U', $link, $matches) && preg_match('/^https?/', $matches[1])) {
        $link = $matches[1];
    } else if (!preg_match('/^https?/', $link)) { // skip if it is not a valid link
        continue;    
    }

    echo '<p>Title: ' . $title . '<br />';
    echo 'Link: ' . $link . '</p>';    
}

?>

结果:

  

标题:欢迎来到Facebook - 登录,注册或了解更多
  链接:https://www.facebook.com/

我喜欢这个结果,但我需要搜索Google专利。

如果还有其他更好的选择/方法,请告诉我,非常感激。

1 个答案:

答案 0 :(得分:0)

如果您正在寻找专利&#34;多功能键盘&#34; 将$ url设为&#34; https://www.google.com/search?tbm=pts&hl=en&q=multi+function+keypad&num=1&#34;

但请记住,如果您正在寻找该网站上没有的某些内容的专利,您可能会从其他网站获得结果,甚至可能无法获得结果。 你需要处理这些情况。 (例如,检查结果中是否包含www.google.com/patents/)。

更有效的搜索方式是使用谷歌API。在https://developers.google.com/web-search/docs/

上搜索专利和php

希望这会有所帮助

更新:我写了一个小脚本来表示,它可以与我说的一致。我不想学习simple_html_dom.php,所以没有使用它。您可能会明白是否可以使用simple_html_dom.php改进我的代码。

有时它需要几次刷新才能正常工作(在我的代码中它会选择一个随机IP,谷歌没有对待有效并且没有返回任何结果,随时可以使用你的ip,但如果你运行太频繁,随机化IP可能仍然无法阻止你的ip如果运行得太频繁(谷歌要求输入captha,如果它发现像抓东西),我也随机几个其他的东西,如http头和用户代理)。 这里是代码

<?php

function searchGooglePatent($searchString){
        $url = "https://www.google.com/search?tbm=pts&hl=en&q=".rawurlencode($searchString);//."&num=1"; // add &num=1 if you need only one result
        echo $url;
        $html = geturl($url);
        $ids = match_all('/<a.*?href=\"(https:\/\/www\.google\.com\/patents\/\w\w\d+)\?.*?\".*?>.*?<\/a>/ms', $html, 1);
        return $ids;
    }

function match_all($regex, $str, $i = 0){
        if(preg_match_all($regex, $str, $matches) === false) {
            return false;
        } else {
            return $matches[$i];
        }
    }


function geturl($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
        $ip=rand(0,255).'.'.rand(0,255).'.'.rand(0,255).'.'.rand(0,255);
        echo "<br>".$ip."<br>";
        curl_setopt($ch, CURLOPT_HTTPHEADER, array("REMOTE_ADDR: $ip", "HTTP_X_FORWARDED_FOR: $ip"));
        curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/".rand(3,5).".".rand(0,3)." (Windows NT ".rand(3,5).".".rand(0,2)."; rv:2.0.1) Gecko/20100101 Firefox/".rand(3,5).".0.1");
        set_time_limit(90);
        $html = curl_exec($ch);
        curl_close($ch);
        return $html;
    }

$searchResult = searchGooglePatent("Multi function keypad");
echo "<pre>";
var_dump($searchResult);
echo "</pre>";

?>

结果页面看起来像这样

    https://www.google.com/search?tbm=pts&hl=en&q=Multi%20function%20keypad
    71.10.79.131
    array (size=4)
      0 => string 'https://www.google.com/patents/US7724240' (length=40)
      1 => string 'https://www.google.com/patents/US6876312' (length=40)
      2 => string 'https://www.google.com/patents/US8259073' (length=40)
      3 => string 'https://www.google.com/patents/US7523862' (length=40)