PHP開發APP介面(四)

來源:互聯網
上載者:User

標籤:

核心技術:
緩衝技術、定時任務

1靜態緩衝,
2.Memcache redis緩衝
使用緩衝減小伺服器壓力

靜態緩衝儲存在磁碟上的靜態檔案
PHP操作緩衝:產生緩衝、擷取緩衝、刪除緩衝;

<?php

class File(){
    private $_dir;
    const EXT =".txt";
    public function __construct(){
        $this->_dir=dirname(__FILE__)."/files/";
    }
/**
*按綜合方式輸出通訊資料
*@param string $key 檔案名稱
*@param string $value 資料
*@param string $path 路徑
*@return string
*/
    public function cacheData($key,$value=‘‘,$path=‘‘){
            $filename=$this->_dir.$path.$key.self::EXT;

            if($value !== ""){
                if(is_null($value)){
                    return @unlink($filename);
                }
                //將value值寫入緩衝
                $dir=dirname($filename);
                if(!is_dir($dir)){
                    mkdir($dir,0777);
                }

                return file_put_contents($filename,json_encode($value));

            }

            if(!is_file($filename)){
                return false;
            }else{
                return json_decode(file_get_contents($filename),true);
            }
    }
}
?>

============================================================================

<?php
/*上面的函數,$value為空白的時候就是擷取緩衝,不為空白就是寫入,
為NULL就是刪除緩衝*/
$file = new File();
if($file->cacheData(‘index_mk_cache‘,null)){
    echo "success";
}else{
    echo "error";
}

?>

 

PHP開發APP介面(四)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.