欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php cache類代碼(php數(shù)據(jù)緩存類)

 更新時間:2010年04月15日 23:27:45   作者:  
php的執(zhí)行效率很高,速度很快,但是連接數(shù)據(jù)庫、查詢數(shù)據(jù)庫等還是比較耗時的。
如果訪問量大的話會給數(shù)據(jù)庫造成很大的負擔,所以對于變化不經(jīng)常的內(nèi)容要做好php 數(shù)據(jù)cache(緩存)是十分必要的,我做了一個簡單的php“文件緩存”的類,希望對大家有所幫助。

思路是這樣的:

對于一般的變量,把該變量變成php語言的格式,寫到文件中,用時只要include這個文件就相當于加載了cache了;
對于array型的變量,把array轉(zhuǎn)化為php語言定義array的字符串,寫到文件中,用時也只要include就相當于加載了cache了;
緩存cache時間上的控制,通過獲取緩存文件的創(chuàng)建時間和現(xiàn)在的時間進行對比,如果沒有到更新時間,直接讀取緩存,如果到了更新時間,查詢數(shù)據(jù)庫,返回數(shù)據(jù),再更新緩存。(尚未實現(xiàn))
下面是我的php-kcache類(php_kcache_class.php):
注:如果是緩存字符串,請把轉(zhuǎn)義字符多寫一個'\',即”\n”要寫成”\\n”。
復制代碼 代碼如下:

/*
//php-kcache class v_0.1
//Author: kangzj
//Email : kangzj@mail.bnu.edu.cn
//Blog : http://kangzj.net.ru
//作者不保證本程序沒有bug,對于使用本程序
//而引起的任何問題不擔負任何責任。
*/
class php_kcache {
    //相對或者絕對目錄,末尾不要加 '/'
    var $cache_dir = './cache';
    var $cache_extension = '.cache.php';

    function set_cache($name, $value){
        $pre = "< ?\n//Cache Created at: ".date('Y-m-d H:i:s')."\n";
        if(!is_array($value)){
            $value = $value;
            $str = "\$$name = '$value';";
        }else{
            $str = "\$$name = " . $this->arrayeval($value) . ';';
        }
        $end = "\n?>";
        echo $cache = $pre . $str . $end;
        $cache_file = $this->cache_dir . '/' . $name . $this->cache_extension;

        if($fp = @fopen($cache_file, 'wb')) {
            fwrite($fp, $cache);
            fclose($fp);
            return true;
        } else {
            echo $cache_file;
            exit('Can not write to cache files, please check cache directory ');
            return false;
        }
    }

    //將array變成字符串, 來自discuz!
    function arrayeval($array, $level = 0) {

        if(!is_array($array)) {
            return "'".$array."'";
        }

        $space = '';
        for($i = 0; $i < = $level; $i++) {
            $space .= "\t";
        }
        $evaluate = "Array\n$space(\n";
        $comma = $space;
        if(is_array($array)) {
            foreach($array as $key => $val) {
                $key = is_string($key) ? '\''.addcslashes($key, '\'\\').'\'' : $key;
                $val = !is_array($val) && (!preg_match("/^\-?[1-9]\d*$/", $val) || strlen($val) > 12) ? '\''.addcslashes($val, '\'\\').'\'' : $val;
                if(is_array($val)) {
                    $evaluate .= "$comma$key => ".arrayeval($val, $level + 1);
                } else {
                    $evaluate .= "$comma$key => $val";
                }
                $comma = ",\n$space";
            }
        }
        $evaluate .= "\n$space)";
        return $evaluate;
    }
}

最簡單的調(diào)用方法:
復制代碼 代碼如下:

include './php_kcache_class.php';
$pc = new php_kcache;
$a = array('a', 'b', 'c');
$pc->set_cache('a', addslashes($a));

復雜的調(diào)用方法(加上緩存時間控制的)——稍后補上….to be continued…

相關(guān)文章

最新評論