search
Homephp教程PHP源码CURL缓存远程文件类


            CURL缓存远程文件类

expires=$expires;
        $this->timeOut=$timeOut;
        $this->cacheEna=$cacheEna;
        $this->debug=$debug;
    }

    /**
     * 检测并创建目录
     * @return bool
     */
    public function mkdirs(){
        if(is_dir($this->path)){
            return true;
        }else{
            return mkdir($this->path, 777, true);
        }
    }

    /**
     * 设置缓存文件相关信息
     * @param $url
     */
    public function setCacheFileInfo($url){
        $this->url=$url;
        $this->path=dirname(__FILE__).'/cache/';
        $this->filename=$this->url?md5($this->url):'null';
    }

    /**
     * 主方法,取得数据
     * @param $url
     * @return bool|string
     */
    public function get($url){
        $this->setCacheFileInfo($url);
        if($this->cacheEna) $this->data=unserialize($this->getCache($url));
        if(!$this->data) $this->data=$this->curlGet($url);
        if($this->data && $this->cacheEna) $this->setCache($url,serialize($this->data));
        return $this->data->contents;
    }

    /**
     * curl GET 请求数据
     * @param $url
     * @return string
     */
    public function curlGet($url){
        if($this->debug && $url=='') echo('请求URL为空,请检查');
        $return=new stdClass();
        $ch = curl_init ();
        curl_setopt($ch, CURLOPT_URL,$url );
        curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeOut);
        curl_setopt($ch, CURLOPT_HEADER, 0 );
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
        $this->curlData=curl_exec($ch);
        $this->curlHeader=curl_getinfo($ch);
        $this->curlError=curl_error($ch);
        $return->header=$this->curlHeader;
        $return->contents=$this->curlData;
        curl_close($ch);
        if((!$this->curlData || $this->curlHeader['http_code'] != '200') && $this->debug ) 
        echo '请求失败,错误信息:'.$this->curlError;
        else return $return;
    }

    /**
     * 取得缓存数据
     * @param $url
     * @return bool|string
     */
    public function getCache($url){
        $this->setCacheFileInfo($url);
        if(file_exists($this->path.$this->filename)){
            if(time() - filemtime($this->path.$this->filename) 
            < $this->expires) $this->cacheData=file_get_contents($this->path.$this->filename);
            else if($this->debug) echo &#39;缓存文件已过期&#39;;
            if($this->cacheData) return $this->cacheData;else if($this->debug) echo &#39;缓存文件内容为空&#39;;
        }else{
            //if($this->debug) echo &#39;缓存文件不存在&#39;;
            return false;
        }
    }

    /**
     * 写入缓存数据
     * @param $url
     * @param $data
     */
    public function setCache($url,$data){
        $this->setCacheFileInfo($url);
        if(!$this->mkdirs() && $this->debug) echo(&#39;创建缓存目录失败:&#39;.$this->path);
        if($data){
            if(!file_put_contents($this->path.$this->filename,$data) && $this->debug){
                echo &#39;写入缓存失败 File:&#39;.$this->path.$this->filename;
            }
        }else{
            if($this->debug) echo &#39;数据为空,不写入缓存&#39;;
        }
    }



}

                                                                       

2. curlCacheExample.php 

               

get(&#39;http://www.baidu.com&#39;);
header(&#39;Content-type:&#39;.$curlCache->data->header[&#39;content_type&#39;]);
echo $curlCache->data->contents;

                           

以上就是CURL缓存远程文件类的内容,更多相关内容请关注PHP中文网(www.php.cn)!

       

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment