在php中使用curl前确保你的php_curl扩展已经开启。
一、curl使用
例如:采集深圳智联招聘上PHP招聘的第一页信息
<?php
$url='http://sou.zhaopin.com/jobs/searchresult.ashx?jl=%E6%B7%B1%E5%9C%B3&kw=php&sm=0&p=1';
//初始化
$ch = curl_init();
//设置选项,包括URL
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//不自动输出内容
curl_setopt($ch, CURLOPT_HEADER, 0);//不返回头部信息
//执行curl
$output = curl_exec($ch);
//错误提示
if(curl_exec($ch) === false){
die(curl_error($ch));
}
//释放curl句柄
curl_close($ch);
header('Content-type: text/html; charset=utf-8');
echo $output;
当然必须对返回的数据使用<<正则表达式>>处理,找出我们想要的那一部分,然后根据需要把数据填充到网站中。
//职位名称
preg_match_all('/<td >.*?<a\s*href="/blog_article/(/)._"\starget="_blank">(.*?)<\/a>/s', $output, $title);
$title[1];//链接
$title[2];//标题
//公司名称
preg_match_all('/<td >.*?<a href="/blog_article/(/)._"\starget="_blank">(.*?)<\/a>/s', $output, $company);
$company[1];//链接
$company[2];//名字
//工作地点
preg_match_all('/<td >\s*(.*?)\s*<\/td>/s', $output, $address);
$address[1];//地点
//发布日期
preg_match_all('/<td >\s*(.*?)\s*<\/td>/s', $output, $time);
$time[1];//时间
var_dump($time[1]);
二、常用功能
curl的核心是通过设置各种选项来达到各种功能,这里我们介绍几种常用的选项。
1.post数据
$post=array(
'uid'=>'test',
'pwd'=>'curl123'
);
curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));//POST数据
2.cookie
$savefile=dirname(__FILE__).'save.txt';
$getfile=dirname(__FILE__).'get.txt';
//可以分开使用
curl_setopt($ch, CURLOPT_COOKIEJAR, $savefile); //保存
curl_setopt($ch, CURLOPT_COOKIEFILE, $getfile); //读取
3.伪造IP、来路
curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-FORWARDED-FOR:8.8.8.8', 'CLIENT-IP:8.8.8.8'));//构造IP
curl_setopt($ch, CURLOPT_REFERER, "http://www.baidu.com");//构造来路
curl_setopt选项大全,详见PHP手册:http://www./shouce/php5/function.curl-setopt.html
三、多线程
以上是php手册中的实例:
<?php
// 创建一对cURL资源
$ch1 = curl_init();
$ch2 = curl_init();
// 设置URL和相应的选项
curl_setopt($ch1, CURLOPT_URL, "http://www./");
curl_setopt($ch1, CURLOPT_HEADER, 0);
curl_setopt($ch2, CURLOPT_URL, "http://www.php.net/");
curl_setopt($ch2, CURLOPT_HEADER, 0);
// 创建批处理cURL句柄
$mh = curl_multi_init();
// 增加2个句柄
curl_multi_add_handle($mh,$ch1);
curl_multi_add_handle($mh,$ch2);
$running=null;
// 执行批处理句柄
do {
usleep(10000);
curl_multi_exec($mh,$running);
} while ($running > 0);
// 关闭全部句柄
curl_multi_remove_handle($mh, $ch1);
curl_multi_remove_handle($mh, $ch2);
curl_multi_close($mh);
?>
在php编程中,__call()是一个魔术方法,当调用一个类里的方法,而该方法又不存在里,就会自动调用__call();
来看具体的实例:
<?php
class Caller
{
private $x = array(1, 2, 3);
public function __call($m, $a)
{
print "Method $m called:\n";
var_dump($a);
return $this->x;
}
}
$foo = new Caller();
$a = $foo->test(1, "2", 3.4, true);
var_dump($a);
代码说明:
上面__call 第一个参数$m 就是你要调用的方法名 test。
第二个参数 是你调用方法传的参数 被当作数据传进来。
输出结果:
Method test called:
array(4) {
[0]=> int(1)
[1]=> string(1) “2″
[2]=> float(3.4)
[3]=> bool(true)
}
array(3) {
[0]=> int(1)
[1]=> int(2)
[2]=> int(3)
}
输出完成 (耗时 0 秒) – 正常终止
此函数的用途,可以自动获取参数?自动加载数据库的n多表?
大家在使用中慢慢琢磨与体会吧。
PHP中可变变量(更多请参考php手册):
php中的可变变量,通俗地讲就是拿一个变量的值解析成一个变量名,去读那个变量名的值。
例如:
$a = "China"; //变量a
$b = "a";//变量b
$China = "I'm Chinese !"; //变量China
$f = "b"; //变量f
echo $a."<br />"; //输出 China
echo $$a."<br />"; //输出 I'm Chinese --这里像要当做可变变量解析,必须在前面多加一个$符号
$a = "f"; //改变变量指向的名称(这里就是可变变量的应用)
echo $$a."<br />"; //经过上面指向变量f后输出 b
$a = "b"; //同上
echo $$a."<br /><br />"; //输出 a
echo $b."<br />"; //输出 a
echo $$b."<br />"; //输出 b
echo $$$b."<br /><br />"; //输出 a
echo $f."<br />"; //输出 b
echo $$f."<br />"; //输出 a
echo $$$f."<br />"; //输出 b
echo $$$$f."<br /><br />"; //输出 a
$$a = "China"; //前面最后一个已经更改了变量为b所谓$$a=$b 也就是改变的$b的值
echo $b."<br />"; //输出 China
echo $$b; //输出 I'm Chinese
?>
注意:可变变量不能应用于$this和超全局变量(php变量的作用域和其他高级编程语言有所不同。)
例如:
$name = 'man';
$$name = 'abc'; //如果事先没有man这个变量。就新建一个man变量。 然后把abc赋值过去
$$$name = 'def';
echo $man."<br />"; //输出abc
echo $abc; //输出def
echo "<br /> <hr />";
function show()
{
global $name; //这里的global并不是设置为全局变量。而是引用
echo $name."<br />"; //输出man
}
function showtwo()
{
//global $name;
//echo $name."<br />";
echo $GLOBALS['name']; //超全局变量数组
}
show();
showtwo();
?>
变量函数:
例如:
function b()
{
echo "这是B";
}
function c($name = "China") //设默认值
{
echo "这是$name";
}
$a = 'b';
$a(); //找值所在的函数
$a = 'c';
$a();
?>
可变变量典型应用:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>可变变量_www.</title>
</head>
<body>
<div>
<form action="#" method="post">
<label>name: </label>
<input type="text" name="name" /><br />
<label>pwd : </label>
<input type="text" name="pwd" /><br />
<label>tag : </label>
<input type="text" name="tag" /><br />
<input type="submit" value="提交" />
</form>
</div>
<?php
foreach($_POST as $key=>$value)
{
//print_r($_POST);
$$key = $value;
}
//extract($_POST); //从数组中将变量导入到当前的符号表 --自行查找php手册
echo $name."<br />";
echo $pwd."<br />";
echo $tag."<br />";
?>
</body>
</html>