Heim php教程 PHP源码 CURL-Cache-Remote-Dateiklasse

CURL-Cache-Remote-Dateiklasse

Nov 09, 2016 pm 02:26 PM

<?php
/**
 * 用于获取远程文件并缓存
 * CurlCache v1.0
 * Created by cr.
 * Date: 2015/12/03
 */
 
//namespace vendor\core;
 
 
class CurlCache
{
    /**
     * 请求地址
     * @var string
     */
    protected $url;
 
    /**
     * 缓存生存期
     * @var int
     */
    protected $expires;
 
    /**
     * 请求超时
     * @var int
     */
    protected $timeOut;
 
    /**
     * 是否开启缓存
     * @var int
     */
    protected $cacheEna;
 
    /**
     * 是否显示debug信息
     * @var bool
     */
    protected $debug;
 
    /**
     * 其他不用配置的内部属性
     */
    protected $path;
 
    protected $filename;
 
    protected $curlData;
 
    protected $curlHeader;
 
    protected $curlError;
 
    protected $cacheData;
 
    public $data;
    /**
     * CurlCache constructor.
     * @param int $expires
     * @param int $timeOut
     * @param bool|true $cacheEna
     * @param bool|false $debug
     */
    public function __construct($expires=3600, $timeOut=30, $cacheEna=true, $debug=false)
    {
        $this->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__).&#39;/cache/&#39;;
        $this->filename=$this->url?md5($this->url):&#39;null&#39;;
    }
 
    /**
     * 主方法,取得数据
     * @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==&#39;&#39;) echo(&#39;请求URL为空,请检查&#39;);
        $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[&#39;http_code&#39;] != &#39;200&#39;) && $this->debug ) echo &#39;请求失败,错误信息:&#39;.$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;;
        }
    }
 
 
 
}
Nach dem Login kopieren

Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Beste grafische Einstellungen
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: Wie man alles in Myrise freischaltet
1 Monate vor By 尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)