⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class.php

📁 一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 PHP
字号:
<?php/** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@zend.com so we can send you a copy immediately. * * @category   Zend * @package    Zend_Cache * @subpackage Frontend * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */ /** * Zend_Cache_Core */require_once 'Zend/Cache/Core.php';/** * @package    Zend_Cache * @subpackage Frontend * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */class Zend_Cache_Frontend_Class extends Zend_Cache_Core{           // ------------------    // --- Properties ---    // ------------------          /**     * Available options     *      * ====> (mixed) cached_entity :     * - if set to a class name, we will cache an abstract class and will use only static calls     * - if set to an object, we will cache this object methods     *      * ====> (boolean) cache_by_default :      * - if true, method calls will be cached by default     *      * ====> (array) cached_methods :     * - an array of method names which will be cached (even if cache_by_default = false)     *      * ====> (array) non_cached_methods :     * - an array of method names which won't be cached (even if cache_by_default = true)     *      * @var array available options     */    protected $_specificOptions = array(        'cached_entity' => null,        'cache_by_default' => true,        'cached_methods' => array(),        'non_cached_methods' => array()    );        /**     * Tags array     *      * @var array     */    private $_tags = array();        /**     * SpecificLifetime value     *      * false => no specific life time     *      * @var int     */    private $_specificLifetime = false;                /**     * The cached object or the name of the cached abstract class     *      * @var mixed     */    private $_cachedEntity = null;            // ----------------------    // --- Public methods ---    // ----------------------           /**     * Constructor     *      * @param array $options associative array of options     */    public function __construct($options = array())    {        while (list($name, $value) = each($options)) {            $this->setOption($name, $value);        }        if (is_null($this->_specificOptions['cached_entity'])) {            Zend_Cache::throwException('cached_entity must be set !');        } else {            if (!is_string($this->_specificOptions['cached_entity']) && !is_object($this->_specificOptions['cached_entity'])) {                Zend_Cache::throwException('cached_entity must be an object or a class name');            }        }        $this->_cachedEntity = $this->_specificOptions['cached_entity'];        $this->setOption('automatic_serialization', true);    }            /**     * Set a specific life time     *      * @param int $specificLifetime      */    public function setSpecificLifetime($specificLifetime = false)    {        $this->_specificLifetime = $specificLifetime;    }        /**     * Set the cache array     *      * @param array $tags     */    public function setTagsArray($tags = array())    {        $this->_tags = $tags;    }        /**     * Main method : call the specified method or get the result from cache     *      * @param string $name method name     * @param array $parameters method parameters     * @return mixed result     */    public function __call($name, $parameters)     {        $cacheBool1 = $this->_specificOptions['cache_by_default'];        $cacheBool2 = in_array($name, $this->_specificOptions['cached_methods']);        $cacheBool3 = in_array($name, $this->_specificOptions['non_cached_methods']);        $cache = (($cacheBool1 || $cacheBool2) && (!$cacheBool3));        if (!$cache) {            // We do not have not cache            return call_user_func_array(array($this->_cachedEntity, $name), $parameters);        }        $id = $this->_makeId($name, $parameters);               if ($this->test($id)) {            // A cache is available            $result = $this->load($id);            $output = $result[0];            $return = $result[1];                              } else {            // A cache is not available            ob_start();            ob_implicit_flush(false);            $return = call_user_func_array(array($this->_cachedEntity, $name), $parameters);            $output = ob_get_contents();            ob_end_clean();            $data = array($output, $return);            $this->save($data, $id, $this->_tags, $this->_specificLifetime);        }        echo $output;        return $return;    }            // ------------------------------------    // --- Private or protected methods ---    // ------------------------------------        /**     * Make a cache id from the method name and parameters     *      * @param string $name method name     * @param array $parameters method parameters     * @return string cache id     */            private function _makeId($name, $parameters)     {        return md5($name . serialize($parameters));    }                 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -