0

0

curl类封装

PHP中文网

PHP中文网

发布时间:2016-05-23 08:39:46

|

1213人浏览过

|

来源于php中文网

原创

[PHP]代码   

ch = curl_init();  
        $this->url = $url ? $url : $this->url;
        //$this->set_useragent = $_SERVER['HTTP_USER_AGENT']; // 模拟用户使用的浏览器   
        $this->set_useragent ="Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_4 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/7.0 Mobile/10B350 Safari/9537.53";
        // $this->set_useragent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36";
        //$this->cookie_file=dirname(__FILE__)."/cookie_".md5(basename(__FILE__)).".txt";	//初始化cookie文件路径	
        //$this->cookie_file= SAE_TMP_PATH.TmpFS;
        $this->cookie_file = "saekv://cookie_2014.txt";
    }  
    //关闭curl
    public function close(){  
        curl_close($this->ch);  
    }  
    //析构函数  
    public function __destruct(){  
        $this->close();  
    }  
    
   //设置超时	
    public function set_time_out($timeout=20){  
        if(intval($timeout) != 0)		
		$this->set_time_out = $timeout;
		return $this;
    }  
    //设置来源页面  
    public function set_referer($referer = ""){  
        if (!empty($referer))  
            curl_setopt($this->ch, CURLOPT_REFERER , $referer);  
        return $this;  
    }
    //设置cookie存放模式 1客户端、2服务器文件	
	public function set_cookie_mode($mode = ""){  
	    $this->cookie_mode = $mode;
		return $this;
	}
    //载入cookie  
    public function load_cookie(){  
	
	    if($this->cookie_mode == 1 ) {
		    if(isset($_COOKIE['curl'])){
		        curl_setopt($this->ch,CURLOPT_COOKIE,$_COOKIE['curl']);
		    }else{
			    $this->exec();
			    curl_setopt($this->ch,CURLOPT_COOKIE,$this->cookie_file);
			}
			
		}
		if($this->cookie_mode == 2 ) {
          
            curl_setopt($this->ch, CURLOPT_COOKIEFILE , $this->cookie_file);
            
		}
        if($this->cookie_mode == 3 ) {
            $kv = new SaeKV();
            $ret = $kv->init();
            $ret = $kv->get('curl_cookie');
            if($ret)
               curl_setopt($this->ch,CURLOPT_COOKIE, $ret);
            
		}
        return $this;  
    }  
   
	//设置保存cookie方式 $cookie_val 模式1为变量 模式2为文件路径
    public function save_cookie($cookie_val = "") {  
	    //保存在客户端
	    if($this->cookie_mode == 1 && $cookie_val){
		   setcookie('curl',$cookie_val); 
		}
		//保存服务器端
		if($this->cookie_mode == 2){ 
            if(!empty($cookie_val))  
               $this->cookie_file =  $cookie_val;
		    curl_setopt($this->ch, CURLOPT_COOKIEJAR , $this->cookie_file);  
		}
        //保存在sae
        if($this->cookie_mode == 3 && $cookie_val){
		     $kv = new SaeKV();
             $ret = $kv->init();
             $ret = $kv->get('curl_cookie');
            if($ret){
                $ret = $kv->set('curl_cookie', $cookie_val );
                
            }else{
                 $ret = $kv->add('curl_cookie', $cookie_val);
            
            }
		}
        
        
        return $this;  
		
    }  
    //post参数 (array) $post 
    public function post ($post = ""){  
	    if($post && is_array($post)){
            curl_setopt($this->ch, CURLOPT_POST , 1);  
            curl_setopt($this->ch, CURLOPT_POSTFIELDS , $post );  
		}
        return $this;  
    }  
    //设置代理 ,例如'68.119.83.81:27977'  
    public function set_proxy($proxy = ""){
        if($proxy){	
            curl_setopt($this->ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);  
            curl_setopt($this->ch, CURLOPT_PROXY,$proxy); 
        }			
        return $this;  
    }  
    //设置伪造ip  
    public function set_ip($ip=""){  
        if(!empty($ip))  
            curl_setopt($this->ch, CURLOPT_HTTPHEADER, array("X-FORWARDED-FOR:$ip", "CLIENT-IP:$ip"));  
        return $ip;  
    } 
     //设置是否显示返回头信息
    public function show_header($show=0){
        $this->show_header = 0; 	
        if($show) 
            $this->show_header = 1; 
        return $this;  
    }

     //设置请求头信息
    public function set_useragent($str=""){  
        if($str)  
            $this->set_useragent = $str;  
		return $this;  
    } 	
	
	//执行  
    public function exec ($url = ""){  
	    if(!$url) $url = $this->url;
	    curl_setopt($this->ch, CURLOPT_URL, $url); // 要访问的地址
	    curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查   
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER , 1 );    //获取的信息以文件流的形式返回		
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYHOST, 1); // 从证书中检查SSL加密算法是否存在 
         curl_setopt($this->ch, CURLOPT_USERAGENT, $this->set_useragent); // 模拟用户使用的浏览器      
        curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转      
        curl_setopt($this->ch, CURLOPT_AUTOREFERER, 1); // 自动设置Referer 
	    curl_setopt($this->ch, CURLOPT_TIMEOUT, $this->set_time_out);  //超时设置
		curl_setopt($this->ch, CURLOPT_HEADER, $this->show_header); // 显示返回的Header区域内容
		curl_setopt($this->ch, CURLOPT_NOBODY, 0);//不返回response body内容 
		
        $res = curl_exec($this->ch);
		$this->flag_if_have_run = true;
        if (curl_errno($this->ch)) {      
            //echo 'Errno'.curl_error($this->ch);  
            return false;			
        } 
        if($this->show_header == 1){ //数组形式返回头信息和body信息 
		    list($header, $body) = explode("\r\n\r\n", $res);
			$arr['header'] = $header;
			$arr['body'] = $body;
			if($this->cookie_mode == 1 || $this->cookie_mode == 3){  
				preg_match_all("/set\-cookie:([^\r\n]*)/i", $header, $matches);
                //print_r($matches);
				if($matches && isset($matches[1]) ){
				    $val = implode(';',array_unique(explode(';',implode(';',$matches[1])))); //去重处理
					if($val)
					  $this->save_cookie($val); //设置客户端保存cookie
				}
			}
			if($arr) return $arr;
		}
		
		return $res;  
    }  
	
	
    //返回  curl_getinfo信息
    public function get_info(){  
        if($this->flag_if_have_run == true )  
            return curl_getinfo($this->ch);  
        else   
            throw new Exception("

需先运行( 执行exec ),再获取信息

"); } } ?>

                   

AI封面生成器
AI封面生成器

专业的AI封面生成工具,支持小红书、公众号、小说、红包、视频封面等多种类型,一键生成高质量封面图片。

下载

                   

相关标签:

php

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

相关专题

更多
php源码安装教程大全
php源码安装教程大全

本专题整合了php源码安装教程,阅读专题下面的文章了解更多详细内容。

7

2025.12.31

php网站源码教程大全
php网站源码教程大全

本专题整合了php网站源码相关教程,阅读专题下面的文章了解更多详细内容。

4

2025.12.31

视频文件格式
视频文件格式

本专题整合了视频文件格式相关内容,阅读专题下面的文章了解更多详细内容。

7

2025.12.31

不受国内限制的浏览器大全
不受国内限制的浏览器大全

想找真正自由、无限制的上网体验?本合集精选2025年最开放、隐私强、访问无阻的浏览器App,涵盖Tor、Brave、Via、X浏览器、Mullvad等高自由度工具。支持自定义搜索引擎、广告拦截、隐身模式及全球网站无障碍访问,部分更具备防追踪、去谷歌化、双内核切换等高级功能。无论日常浏览、隐私保护还是突破地域限制,总有一款适合你!

7

2025.12.31

出现404解决方法大全
出现404解决方法大全

本专题整合了404错误解决方法大全,阅读专题下面的文章了解更多详细内容。

42

2025.12.31

html5怎么播放视频
html5怎么播放视频

想让网页流畅播放视频?本合集详解HTML5视频播放核心方法!涵盖<video>标签基础用法、多格式兼容(MP4/WebM/OGV)、自定义播放控件、响应式适配及常见浏览器兼容问题解决方案。无需插件,纯前端实现高清视频嵌入,助你快速打造现代化网页视频体验。

4

2025.12.31

关闭win10系统自动更新教程大全
关闭win10系统自动更新教程大全

本专题整合了关闭win10系统自动更新教程大全,阅读专题下面的文章了解更多详细内容。

3

2025.12.31

阻止电脑自动安装软件教程
阻止电脑自动安装软件教程

本专题整合了阻止电脑自动安装软件教程,阅读专题下面的文章了解更多详细教程。

3

2025.12.31

html5怎么使用
html5怎么使用

想快速上手HTML5开发?本合集为你整理最实用的HTML5使用指南!涵盖HTML5基础语法、主流框架(如Bootstrap、Vue、React)集成方法,以及无需安装、直接在线编辑运行的平台推荐(如CodePen、JSFiddle)。无论你是新手还是进阶开发者,都能轻松掌握HTML5网页制作、响应式布局与交互功能开发,零配置开启高效前端编程之旅!

2

2025.12.31

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
PHP课程
PHP课程

共137课时 | 8.1万人学习

JavaScript ES5基础线上课程教学
JavaScript ES5基础线上课程教学

共6课时 | 6.9万人学习

PHP新手语法线上课程教学
PHP新手语法线上课程教学

共13课时 | 0.8万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号