亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? zend.php.svn-base

?? PHP 知識管理系統(基于樹結構的知識管理系統), 英文原版的PHP源碼。
?? SVN-BASE
字號:
<?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 * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License * @version    $Id: Zend.php 3900 2007-03-13 18:51:49Z bkarwin $ *//** * Zend_Exception */require_once 'Zend/Exception.php';/** * Utility class for common functions. * * @deprecated Since Zend Framework 0.9.0. * * @category   Zend * @package    Zend * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */final class Zend{    /**     * Zend Framework version identification - see compareVersion()     *     * @deprecated Since 0.9.0 -- use Zend_Version::VERSION instead.     */    const VERSION = '0.9.0dev';    /**     * Object registry provides storage for shared objects     *     * @var Zend_Registry     */    static private $_registry = null;    /**     * Loads a class from a PHP file.  The filename must be formatted     * as "$class.php".     *     * If $dirs is a string or an array, it will search the directories     * in the order supplied, and attempt to load the first matching file.     *     * If $dirs is null, it will split the class name at underscores to     * generate a path hierarchy (e.g., "Zend_Example_Class" will map     * to "Zend/Example/Class.php").     *     * If the file was not found in the $dirs, or if no $dirs were specified,     * it will attempt to load it from PHP's include_path.     *     * @param string $class      - The full class name of a Zend component.     * @param string|array $dirs - OPTIONAL either a path or array of paths to search     * @throws Zend_Exception     * @return void     *     * @deprecated Since 0.9.0 -- Use Zend_Loader::loadClass() instead.     */    static public function loadClass($class, $dirs = null)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Loader::loadClass() instead");        require_once 'Zend/Loader.php';        Zend_Loader::loadClass($class, $dirs);    }    /**     * Loads an interface from a PHP file     *     * @deprecated Since 0.6     */    static public function loadInterface($class, $dirs = null)    {        throw new Zend_Exception(__FUNCTION__ . " has been removed. Please use require_once().");    }    /**     * Loads a PHP file.  This is a wrapper for PHP's include() function.     *     * $filename must be the complete filename, including any     * extension such as ".php".  Note that a security check is performed that     * does not permit extended characters in the filename.  This method is     * intended for loading Zend Framework files.     *     * If $dirs is a string or an array, it will search the directories     * in the order supplied, and attempt to load the first matching file.     *     * If the file was not found in the $dirs, or if no $dirs were specified,     * it will attempt to load it from PHP's include_path.     *     * If $once is TRUE, it will use include_once() instead of include().     *     * @param  string        $filename     * @param  string|array  $dirs - OPTIONAL either a path or array of paths to search     * @param  boolean       $once     * @throws Zend_Exception     * @return mixed     *     * @deprecated Since 0.9.0 -- Use Zend_Loader::loadFile() instead.     */    static public function loadFile($filename, $dirs = null, $once = false)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Loader::loadFile() instead");        require_once 'Zend/Loader.php';        Zend_Loader::loadFile($filename, $dirs, $once);    }    /**     * Returns TRUE if the $filename is readable, or FALSE otherwise.  This     * function uses the PHP include_path, where PHP's is_readable() does not.     *     * @param string $filename     * @return boolean     *     * @deprecated Since 0.9.0 -- Use Zend_Loader::isReadable() instead.     */    static public function isReadable($filename)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Loader::isReadable() instead");        require_once 'Zend/Loader.php';        return Zend_Loader::isReadable($filename);    }    /**     * Return a new exception     *     * Loads an exception class as specified by $class, and then passes the     * message and code arguments to the Exception's constructor, returning the     * new Exception object.     *     * If the exception created is not a true Exception, throws a Zend_Exception     * indicating an invalid exception class was passed.     *     * Usage:     * <code>     *     throw Zend::exception('Some_Exception', 'exception message');     * </code>     *     * @param string $class     * @param string $message Defaults to empty string     * @param int $code Defaults to 0     * @return Exception     * @throws Zend_Exception when invalid exception class passed     *     * @deprecated Since 0.6.1     */    static public function exception($class, $message = '', $code = 0)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.6.1");        $class = (string) $class;        require_once 'Zend/Loader.php';        Zend_Loader::loadClass($class);        $exception = new $class($message, $code);        if (!$exception instanceof Exception) {            throw new Zend_Exception('Invalid exception class used in Zend::exception()');        }        return $exception;    }    /**     * offsetSet stores $newval at key $index     *     * @param mixed $index  index to set     * @param $newval new value to store at offset $index     * @return  void     *     * @deprecated Since 0.9.0 -- Use Zend_Registry::set() instead.     */    static public function register($index, $newval)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Registry::set() instead");        require_once 'Zend/Registry.php';        Zend_Registry::set($index, $newval);    }    /**     * registry() retrieves the value stored at an index.     *     * If the $index argument is NULL or not specified,     * this method returns the registry object (iterable).     *     * @see     register()     * @param   string      $index The name for the value.     * @throws  Zend_Registry_Exception     * @return  mixed       The registered value for $index.     *     * @deprecated Since 0.9.0 -- Use Zend_Registry::get() instead.     */    static public function registry($index = null)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Registry::get() instead");        require_once 'Zend/Registry.php';        Zend_Registry::get($index);    }    /**     * Returns TRUE if the $index is a named value in the     * registry, or FALSE if $index was not found in the registry.     *     * @param  string $index     * @return boolean     *     * @deprecated Since 0.9.0 -- Use Zend_Registry::isRegistered() instead.     */    static public function isRegistered($index)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Registry::isRegistered() instead");        require_once 'Zend/Registry.php';        return Zend_Registry::isRegistered($index);    }    /**     * Initialize the registry. Invoking this method more than once will generate an exception.     *     * @param mixed $registry - Either a name of the registry class (Zend_Registry, or a subclass)     *                          or an instance of Zend_Registry (or subclass)     * @return Zend_Registry     *     * @deprecated Since 0.9.0 -- Use Zend_Registry::setClassName() instead.     */    static public function initRegistry($registry = 'Zend_Registry')    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Registry::setClassName() instead");        require_once 'Zend/Registry.php';        Zend_Registry::setClassName($registry);        return Zend_Registry::getInstance();    }    /**     * primarily for tearDown() in unit tests     *     * @deprecated Since 0.9.0 -- Use Zend_Registry::_unsetInstance() instead.     */    static public function __unsetRegistry()    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Registry::_unsetInstance() instead");        require_once 'Zend/Registry.php';        Zend_Registry::_unsetInstance();    }    /**     * Debug helper function.  This is a wrapper for var_dump() that adds     * the <pre /> tags, cleans up newlines and indents, and runs     * htmlentities() before output.     *     * @param  mixed  $var The variable to dump.     * @param  string $label An optional label.     * @return string     *     * @deprecated since 0.9.0     */    static public function dump($var, $label=null, $echo=true)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Debug::dump() instead");        require_once 'Zend/Debug.php';        return Zend_Debug::dump($var, $label, $echo);    }    /**     * Compare the specified ZF $version with the current Zend::VERSION of the ZF.     *     * @param  string  $version  A version identifier for the ZF (e.g. "0.7.1")     * @return boolean    -1 if the $version is older, 0 if they are the same, and +1 if $version is newer     *     * @deprecated Since 0.9.0 -- Use Zend_Version::compareVersion() instead.     */    static public function compareVersion($version)    {        trigger_error(__CLASS__ . "::" . __FUNCTION__ . " deprecated since 0.9.0, use Zend_Version::compareVersion() instead");        require_once 'Zend/Version.php';        return Zend_Version::compareVersion($version);    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线播放91灌醉迷j高跟美女| 亚洲三级视频在线观看| 国产欧美1区2区3区| 国产成人精品亚洲777人妖| 日本精品裸体写真集在线观看 | 亚洲综合色视频| 韩国v欧美v日本v亚洲v| 7878成人国产在线观看| 亚洲免费毛片网站| 国产成人精品亚洲日本在线桃色| 欧美精品一级二级三级| 中文字幕一区二区三区蜜月 | 91在线观看美女| 精品精品欲导航| 亚洲成av人片在线观看| 99精品一区二区三区| 久久久久久免费网| 蜜桃一区二区三区在线| 6080国产精品一区二区| 一区二区三区精品在线| 91尤物视频在线观看| 国产亚洲人成网站| 国内精品写真在线观看| 制服丝袜一区二区三区| 婷婷综合在线观看| 欧美色视频在线观看| 亚洲女爱视频在线| 91麻豆自制传媒国产之光| 国产精品美女久久久久aⅴ国产馆| 国产一区二区免费在线| 久久九九久久九九| 蜜桃免费网站一区二区三区| 欧美日韩日日摸| 视频一区国产视频| 8v天堂国产在线一区二区| 免费成人av在线| 精品久久久久久久人人人人传媒| 久久er精品视频| 欧美r级在线观看| 国精产品一区一区三区mba桃花| 精品国产乱子伦一区| 国产成人精品一区二区三区四区 | 人人超碰91尤物精品国产| 欧美一区二区精美| 看国产成人h片视频| 久久久久久综合| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 午夜精品影院在线观看| 欧美一级夜夜爽| 国产精品一二二区| 亚洲天堂中文字幕| 欧美日韩的一区二区| 高清在线成人网| 亚洲精品成人精品456| 欧美日韩一区精品| 国产最新精品精品你懂的| 国产欧美一区二区精品性色 | 成人影视亚洲图片在线| 亚洲免费在线看| 欧美一级二级在线观看| 国产电影一区在线| 亚洲二区视频在线| 国产色91在线| 欧美日韩第一区日日骚| 成人永久看片免费视频天堂| 午夜视频在线观看一区二区| 久久久久久久久97黄色工厂| 色婷婷一区二区| 精品中文字幕一区二区小辣椒 | 国产欧美日韩精品一区| 色婷婷久久久综合中文字幕 | 中文字幕免费一区| 91精品国产综合久久久久久漫画| 国产白丝精品91爽爽久久| 午夜精品久久久久影视| 久久久99精品免费观看| 欧美高清性hdvideosex| 成人av影视在线观看| 蜜桃视频一区二区| 亚洲一区二三区| 久久精品人人做人人爽97| 欧美日韩在线播放三区| 99久久精品国产观看| 极品少妇一区二区三区精品视频| 亚洲乱码国产乱码精品精小说 | 中文字幕永久在线不卡| 日韩午夜激情av| 精品视频一区三区九区| 成人激情文学综合网| 国产在线视频不卡二| 首页国产欧美日韩丝袜| 亚洲男人的天堂在线观看| 欧美国产一区视频在线观看| 欧美电视剧在线看免费| 欧美四级电影在线观看| 91丨九色porny丨蝌蚪| 国产电影精品久久禁18| 久久精品99久久久| 日本欧美大码aⅴ在线播放| 一区二区三区日韩在线观看| 国产精品美女久久久久久久久久久| 亚洲精品在线观| 精品国一区二区三区| 日韩欧美国产三级| 69堂成人精品免费视频| 欧美日韩高清一区二区不卡 | 色噜噜偷拍精品综合在线| 99久久99久久精品免费观看| 5月丁香婷婷综合| 欧美日韩激情一区二区| 欧美日韩国产色站一区二区三区| 在线日韩av片| 欧美这里有精品| 欧美无人高清视频在线观看| 91豆麻精品91久久久久久| 日本高清免费不卡视频| 色婷婷香蕉在线一区二区| 欧美最猛黑人xxxxx猛交| 在线一区二区视频| 欧美日韩国产中文| 欧美一区二区黄| 精品国产一区二区在线观看| 精品第一国产综合精品aⅴ| 久久婷婷国产综合国色天香| 国产亚洲欧美日韩在线一区| 国产精品亲子伦对白| 亚洲欧洲av在线| 一区二区三区中文在线观看| 亚洲电影你懂得| 青青草成人在线观看| 国产曰批免费观看久久久| 成人蜜臀av电影| 91国产精品成人| 欧美一区二区三区视频在线| 日韩精品一区二区三区蜜臀| 久久久久久97三级| 亚洲色图色小说| 日精品一区二区| 国产精品综合一区二区| 99精品视频在线观看| 欧美日韩精品欧美日韩精品| 精品国一区二区三区| 综合久久综合久久| 亚洲动漫第一页| 国产成人精品www牛牛影视| 99视频在线观看一区三区| 欧美日韩中字一区| 久久久精品国产99久久精品芒果 | 国产精品高潮呻吟| 亚瑟在线精品视频| 国产精品系列在线播放| 在线观看日韩精品| 久久久噜噜噜久久人人看| 夜夜爽夜夜爽精品视频| 国内精品久久久久影院一蜜桃| 91亚洲永久精品| 欧美精品一区二区三区在线播放| 亚洲图片欧美激情| 国产一区二区精品在线观看| 欧美在线一区二区| 国产精品美女www爽爽爽| 蜜臀av一区二区| 色综合久久久久综合99| 久久欧美中文字幕| 日韩精品一级中文字幕精品视频免费观看 | 一区二区三区欧美亚洲| 国产精品91一区二区| 欧美久久一二区| 亚洲三级久久久| 国产69精品久久久久777| 欧美精品色综合| 尤物在线观看一区| 国产成人精品免费| 精品999久久久| 无码av免费一区二区三区试看| 欧美一区二区国产| 一区二区三区欧美在线观看| 国产高清久久久久| 亚洲精品一线二线三线| 首页国产欧美久久| 欧美日韩在线综合| 一区二区激情视频| 1区2区3区欧美| 国产亚洲短视频| 久久99久久99小草精品免视看| 色综合视频在线观看| 亚洲国产精品av| 国产精品一区不卡| 欧美精品一区二区三区很污很色的| 亚洲国产另类av| 欧美羞羞免费网站| 亚洲乱码日产精品bd| 色中色一区二区| 亚洲精品视频在线观看免费| 成人午夜免费视频| 国产欧美日韩不卡免费| 成人一区二区三区在线观看| 国产精品毛片大码女人| 成人开心网精品视频| 国产精品久久久久久久午夜片|