php curl实例几个
类似于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实现
2、http的post实现
http://www.domain.com/api/index.php
3. php的curl传送cookie
两种方式:
一种是自动:
这样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; } ?>
一种自定义: