PHP的curl实现get,post和cookie(实例介绍)
类似于dreamhost这类主机服务商,是显示fopen的使用 的。使用php的curl可以实现支持ftp、ftps、http htpps scp sftp tftp telnet dict file和ldap。curl 支持ssl证书、http post、http put 、ftp 上传,kerberos、基于htt格式的上传、代理、cookie、用户+口令证明、文件传送恢复、http代理通道就最常用的来说,是基于http的 get和post方法。
代码实现:
1、http的get实现
$ch = curl_init("http://www.domain.com/api/index.php?test=1") ;
curl_setopt($ch, curlopt_returntransfer, true) ; // 获取数据返回
curl_setopt($ch, curlopt_binarytransfer, true) ; // 在启用 curlopt_returntransfer 时候将获取数据返回
echo $output = curl_exec($ch) ;
/* 写入文件 */
$fh = fopen("out.html", 'w') ;
fwrite($fh, $output) ;
fclose($fh) ;
2、http的post实现
<?php
$url = 'http://www.domain.com/api/' ;
$fields = array(
'lname'=>'justcoding' ,
'fname'=>'phplover' ,
'title'=>'myapi',
'age'=>'27' ,
'email'=>'1353777303@gmail.com' ,
'phone'=>'1353777303'
);
//$post_data = implode('&',$fields);
注意:post请求的参数要用get方式那样连接起来,作为字符串传递:
如:$params = 'userid='.$this->user_id.'&auth='.$this->auth.'&sig='.$this->sig
还有跨平台的请求,curl_setopt($ch, curlopt_followlocation, 1); // 使用自动跳转 (很重要)
//open connection
$ch = curl_init() ;
//set the url, number of post vars, post data
curl_setopt($ch, curlopt_url,$url) ;
curl_setopt($ch, curlopt_post,count($fields)) ; // 启用时会发送一个常规的post请求,类型为:application/x-www-form-urlencoded,就像表单提交的一样。
curl_setopt($ch, curlopt_postfields,$fields); // 在http中的“post”操作。如果要传送一个文件,需要一个@开头的文件名
ob_start();
curl_exec($ch);
$result = ob_get_contents() ;
ob_end_clean();
echo $result;
//close connection
curl_close($ch) ;
<?php
if($_get['test'])
{
print_r($_get);
}
if($_post)
{
print_r($_post);
}
php的curl传送cookie
两种方式:
一种是自动:
curl_setopt($curlhandle, curlopt_cookiejar, 'cookie.txt '); //保存
curl_setopt($curlhandle, curlopt_cookiefile, 'cookie.txt '); //读取
这样cookie会自动跟上去.
不过要分两次,一是先访问产生cookie,接着连结才能用cookie
例子:
<?php
function get_curlcuconent2($filename,$referer)
{
$cookie_jar = tempnam('./tmp','jsessionid');
$ch = curl_init();
curl_setopt($ch, curlopt_url, $filename);
curl_setopt($ch, curlopt_header, false);
curl_setopt($ch, curlopt_returntransfer, 1);
//设置文件读取并提交的cookie路径
curl_setopt($ch, curlopt_cookiejar, $cookie_jar);
$filecontent=curl_exec($ch);
curl_close($ch);
$ch = curl_init();
$hostname ="www.domain.com";
//$referer="http://www.domain.com/";
curl_setopt($ch, curlopt_url, $filename);
curl_setopt($ch, curlopt_referer, $referer); // 看这里,你也可以说你从google来
curl_setopt($ch, curlopt_useragent, "www.domain.com");
//$request = "jsessionid=abc6szw15ozvz_pu9b-8r"; //设置post参数
//curl_setopt($ch, curlopt_postfields, $request);
// 上面这句,当然你可以说你是baidu,改掉这里的值就ok了,可以实现小偷的功能,$_server['http_user_agent']
//你也可以自己做个 spider 了,那么就伪装这里的 curlopt_useragent 吧
//如果你要把这个程序放到linux上用php -q执行那也要写出具体的$_server['http_user_agent'],伪造的也可以
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curlopt_cookiefile, $cookie_jar);
curl_setopt($ch, curlopt_header, false);//设定是否输出页面内容
curl_setopt($ch, curlopt_get, 1); // post,get 过去
$filecontent = curl_exec($ch);
preg_match_all("/charset=(.+?)[null\"\']/is",$filecontent, $charsetarray);
if(strtolower($charsetarray[1][0])=="utf-8")
$filecontent=iconv( 'utf-8', 'gb18030//ignore' , $filecontent);
curl_close($ch);
return $filecontent;
}
?>
一种自定义:
$header[]= 'accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, text/html, * '. '/* ';
$header[]= 'accept-language: zh-cn ';
$header[]= 'user-agent: mozilla/4.0 (compatible; msie 6.0; windows nt 5.1; sv1; .net clr 2.0.50727) ';
$header[]= 'host: '.$你的目标host;
$header[]= 'connection: keep-alive ';
$header[]= 'cookie: '.$你的cookie串;
curl_setopt($curlhandel,curlopt_httpheader,$header);
上一篇: php array_intersect()函数使用代码
下一篇: mysql5详细安装教程
推荐阅读
-
PHP的curl实现get,post和cookie(实例介绍)
-
php使用file_get_contents(‘php://input‘)和$_POST的区别实例对比
-
PHP如何使用cURL实现Get和Post请求
-
php的curl实现get和post的代码
-
PHP特性01:cURL实现get和post,在url间做数据交互;
-
18、PHP中使用CURL实现GET和POST请求
-
PHP中使用cURL实现Get和Post请求的方法
-
PHP中使用cURL实现Get和Post请求的方法
-
portfree production program php的curl实现get和post的代码
-
php同时使用session和cookie来保存用户登录信息的实现代码_php实例