首页 > 编程知识 正文

php使用google(php使用自定义函数编程求半径r为10的圆的周长和面积)

时间:2023-11-29 19:40:50 阅读:310509 作者:QQYE

本文目录一览:

  • 1、如何 用php抓取google关键词排名
  • 2、谷歌浏览器有个PHP插件,谁知道怎么用
  • 3、php怎么爬取google查询 结果

如何 用php抓取google关键词排名

1.说下思路,利用PHP的curl函数储存cookie,google搜索页面是无法用file_get_connents打开的,必须要完全模拟浏览器才行,百度就不同了,直接用file_get_conntens抓取页面,然后用正则处理下就行了。

2.[code]?php

header("Content-Type:text/html;charset=utf-8");

functionggsearch($url_s,$keyword,$page=1){

$enKeyword=urlencode($keyword);

$rsState=false;

$page_num=($page-1)*10;

if($page=10){

$interface="eth0:".rand(1,4);//避免GG封IP

$cookie_file=dirname(__FILE__)."/temp/google.txt";//存储cookie值

$url=";hl=enprmd=imvnsei=JPnJTvLFI8HlggeXwbRlstart=$page_numsa=N";

$ch=curl_init();

curl_setopt($ch,CURLOPT_URL,$url);

//curl_setopt($ch,CURLOPT_USERAGENT,$_SERVER['HTTP_USER_AGENT']);//获取浏览器类型

curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0(Windows;U;WindowsNT6.1;en-US;rv:1.9.1.2)Gecko/20090729Firefox/3.5.2GTB5");

curl_setopt($ch,CURLOPT_INTERFACE,"$interface");//指定访问IP地址

curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1);

curl_setopt($ch,CURLOPT_COOKIEJAR,$cookie_file);

$contents=curl_exec($ch);

curl_close($ch);

$match="!divs*id="search"(.*)/divs+!--z--!";

preg_match_all("$match","$contents",$line);

while(list($k,$v)=each($line[0])){

preg_match_all("!h3s+class="r"a[^]+(.*?)/a!",$v,$title);

$num=count($title[1]);

for($i=0;$i$num;$i++){

if(strstr($title[0][$i],$url_s)){

$rsState=true;

$j=$i+1;

$sum=$j+(($page)*10-10);

//echo$contents;

echo"关键字".$keyword."br"."排名:".'fontcolor="red"size="20"style=""'.$sum.'/font'."####"."第".'fontcolor="#00FFFF"size="18"style=""'.$page.'/font'."页"."第".'fontcolor="#8000FF"size="15"style=""'.$j.'/font'."名".$title[0][$i]."br";

echo"ahref='".$url."'"."点击搜索结果"."/a"."br";

echo"hr";

break;

}

}

}

unset($contents);

if($rsState===false){

ggsearch($url_s,$keyword,++$page);//找不到搜索页面的继续往下搜索

}

}else{

echo'关键字'.$keyword.'10页之内没有该网站排名'.'br';

echo"hr";

}

}

if(!empty($_POST['submit'])){

$time=explode('',microtime());

$start=$time[0]+$time[1];

$more_key=trim($_POST['textarea']);

$url_s=trim($_POST['url']);

if(!empty($more_key)!empty($url_s)){

/*判断输入字符的规律*/

if(strstr($more_key,"n")){

$exkey=explode("n",$more_key);

}

if(strstr($more_key,"|")){

$exkey=explode("|",$more_key);

}

if(!strstr($more_key,"n")!strstr($more_key,"|")){

$exkey=array($more_key);

}

/*判断是否有www或者http://之类的东西*/

if(count(explode('.',$url_s))=2){

$url=ltrim($url_s,'');

$url='www.'.$url_s;

}

foreach($exkeyas$keyword){

//$keyword;

ggsearch($url_s,$keyword);

}

$endtime=explode('',microtime());

$end=$endtime[0]+$endtime[1];

echo'hr';

echo'程序运行时间:';

echo$end-$start;

//die();

}

}

?

!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"""

htmlxmlns=""

head

title抓取排名/title

/head

body

formaction=""method="post"

span关键字:/spantextareaname="textarea"rows="20"cols="40"wrap="off"

格式例如:keyword1|keyword2|keyword3

或者:keyword1

keyword2

keyword3

/textarea

spanurl地址:/spaninputtype="text"name="url"

inputtype="submit"name="submit"value="搜索"

/form

/body

谷歌浏览器有个PHP插件,谁知道怎么用

进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需要的模块,比如curl模块:cd curl

执行phpize生成编译文件,phpize在PHP安装目录的bin目录下

/usr/local/php5/bin/phpize

运行时,可能会报错:Cannot find autoconf. Please check your autoconf installation and

the $PHP_AUTOCONF

environment variable is set correctly and then rerun this

script.,需要安装autoconf:

yum install autoconf(RedHat或者CentOS)、apt-get install

autoconf(Ubuntu Linux)

/usr/local/php5/bin/php -v

执行这个命令时,php会去检查配置文件是否正确,如果有配置错误,

这里会报错,可以根据错误信息去排查!

php怎么爬取google查询 结果

先访问网页,使用curl或者file_get_contents获取,然后再用正则判断即可获取

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。