一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

來自phpguru得Php Cache類源碼

Cache的作用不用說大家都知道咯,這些天也面試了一些人,發(fā)現(xiàn)很多人框架用多了,基礎(chǔ)都忘記了,你問一些事情,他總是說框架解決了,而根本不明白是怎么回事,所以也提醒大家應(yīng)該注意平時(shí)基礎(chǔ)知識的積累,之后對一些問題才能游刃有余.

群里也有些朋友對基礎(chǔ)知識很不屑,總說有能力就可以了,基礎(chǔ)知識考不出來什么.對于這樣的觀點(diǎn),我一直不茍同.
這個(gè)只是一點(diǎn)感概罷了. 下面看正題,介紹一個(gè)php的Cache類:

貼一下代碼吧:下面也有下載地址,其實(shí)很簡單,重要的是學(xué)習(xí)
復(fù)制代碼 代碼如下:
<?php
/**
* o------------------------------------------------------------------------------o
* | This package is licensed under the phpguru license. A quick summary is |
* | that for commercial use, there is a small one-time licensing fee to pay. For |
* | registered charities and educational institutes there is a reduced license |
* | fee available. You can read more at: |
* | |
* | http://www.phpguru.org/static/license.html |
* o------------------------------------------------------------------------------o
*/
/**
* Caching Libraries for php5
*
* Handles data and output caching. Defaults to /dev/shm
* (shared memory). All methods are static.
*
* Eg: (output caching)
*
* if (!OutputCache::Start('group', 'unique id', 600)) {
*
* // ... Output
*
* OutputCache::End();
* }
*
* Eg: (data caching)
*
* if (!$data = DataCache::Get('group', 'unique id')) {
*
* $data = time();
*
* DataCache::Put('group', 'unique id', 10, $data);
* }
*
* echo $data;
*/
class Cache
{
/**
* Whether caching is enabled
* @var bool
*/
public static $enabled = true;
/**
* Place to store the cache files
* @var string
*/
protected static $store = '/dev/shm/';
/**
* Prefix to use on cache files
* @var string
*/
protected static $prefix = 'cache_';
/**
* Stores data
*
* @param string $group Group to store data under
* @param string $id Unique ID of this data
* @param int $ttl How long to cache for (in seconds)
*/
protected static function write($group, $id, $ttl, $data)
{
$filename = self::getFilename($group, $id);
if ($fp = @fopen($filename, 'xb')) {
if (flock($fp, LOCK_EX)) {
fwrite($fp, $data);
}
fclose($fp);
// Set filemtime
touch($filename, time() + $ttl);
}
}
/**
* Reads data
*
* @param string $group Group to store data under
* @param string $id Unique ID of this data
*/
protected static function read($group, $id)
{
$filename = self::getFilename($group, $id);
return file_get_contents($filename);
}
/**
* Determines if an entry is cached
*
* @param string $group Group to store data under
* @param string $id Unique ID of this data
*/
protected static function isCached($group, $id)
{
$filename = self::getFilename($group, $id);
if (self::$enabled && file_exists($filename) && filemtime($filename) > time()) {
return true;
}
@unlink($filename);
return false;
}
/**
* Builds a filename/path from group, id and
* store.
*
* @param string $group Group to store data under
* @param string $id Unique ID of this data
*/
protected static function getFilename($group, $id)
{
$id = md5($id);
return self::$store . self::$prefix . "{$group}_{$id}";
}
/**
* Sets the filename prefix to use
*
* @param string $prefix Filename Prefix to use
*/
public static function setPrefix($prefix)
{
self::$prefix = $prefix;
}
/**
* Sets the store for cache files. Defaults to
* /dev/shm. Must have trailing slash.
*
* @param string $store The dir to store the cache data in
*/
public static function setStore($store)
{
self::$store = $store;
}
}
/**
* Output Cache extension of base caching class
*/
class OutputCache extends Cache
{
/**
* Group of currently being recorded data
* @var string
*/
private static $group;
/**
* ID of currently being recorded data
* @var string
*/
private static $id;
/**
* Ttl of currently being recorded data
* @var int
*/
private static $ttl;
/**
* Starts caching off. Returns true if cached, and dumps
* the output. False if not cached and start output buffering.
*
* @param string $group Group to store data under
* @param string $id Unique ID of this data
* @param int $ttl How long to cache for (in seconds)
* @return bool True if cached, false if not
*/
public static function Start($group, $id, $ttl)
{
if (self::isCached($group, $id)) {
echo self::read($group, $id);
return true;
} else {
ob_start();
self::$group = $group;
self::$id = $id;
self::$ttl = $ttl;
return false;
}
}
/**
* Ends caching. Writes data to disk.
*/
public static function End()
{
$data = ob_get_contents();
ob_end_flush();
self::write(self::$group, self::$id, self::$ttl, $data);
}
}
/**
* Data cache extension of base caching class
*/
class DataCache extends Cache
{
/**
* Retrieves data from the cache
*
* @param string $group Group this data belongs to
* @param string $id Unique ID of the data
* @return mixed Either the resulting data, or null
*/
public static function Get($group, $id)
{
if (self::isCached($group, $id)) {
return unserialize(self::read($group, $id));
}
return null;
}
/**
* Stores data in the cache
*
* @param string $group Group this data belongs to
* @param string $id Unique ID of the data
* @param int $ttl How long to cache for (in seconds)
* @param mixed $data The data to store
*/
public static function Put($group, $id, $ttl, $data)
{
self::write($group, $id, $ttl, serialize($data));
}
}
?>

使用方法:
復(fù)制代碼 代碼如下:
$dir = !empty($_SERVER['argv'][1]) ? $_SERVER['argv'][1] : '.';
$dh = opendir($dir);
while ($filename = readdir($dh)) {
if ($filename == '.' OR $filename == '..') {
continue;
}
if (filemtime($dir . DIRECTORY_SEPARATOR . $filename) < time()) {
unlink($dir . DIRECTORY_SEPARATOR . $filename);
}
}

源碼打包下載

php技術(shù)來自phpguru得Php Cache類源碼,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 亚洲国产欧美91 | 欧美日韩亚洲国产一区二区综合 | 超清中文乱码精品字幕在线观看 | 精品在线观看国产 | caoporen国产91在线 | 国产一区二区中文字幕 | 91麻豆久久 | 成人激情视频网 | 久久久99精品免费观看精品 | 成年人在线观看视频 | 中文字幕日韩在线 | 激情综合文学 | 亚洲图片一区 | 色伊人国产高清在线 | 六月丁香在线播放 | 热99在线视频 | 五月婷婷丁香在线 | 欧美精品人爱a欧美精品 | 顶级欧美色妇xxxxx | 久久性色 | 怡红院美国十次成人影院 | 激情图片视频小说 | 久久亚洲国产成人亚 | 韩国三级日本三级美三级 | 国产xx在线观看 | 2021国产精品一区二区在线 | 在线看黄网址 | 在线婷婷 | 精品国产污网站在线观看15 | 亚洲婷婷影院 | 午夜免费视频观看 | 午夜国产福利在线观看 | 国产色综合一区二区三区 | 久久人人草| 成人在线综合 | 亚洲第一精品福利 | 中文一区在线观看 | 色网站免费在线观看 | 一级爱爱片一级毛片-一毛 一级爱做片免费观看久久 一级不卡毛片 | 亚洲女人影院想要爱 | 国产美女在线精品亚洲二区 |