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

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

?? smarty.class.php

?? Ourplus09Beta 用PHP編寫的系統,其特點是簡潔大方
?? PHP
?? 第 1 頁 / 共 5 頁
字號:
    }    /**     * Registers modifier to be used in templates     *     * @param string $modifier name of template modifier     * @param string $modifier_impl name of PHP function to register     */    function register_modifier($modifier, $modifier_impl)    {        $this->_plugins['modifier'][$modifier] =            array($modifier_impl, null, null, false);    }    /**     * Unregisters modifier     *     * @param string $modifier name of template modifier     */    function unregister_modifier($modifier)    {        unset($this->_plugins['modifier'][$modifier]);    }    /**     * Registers a resource to fetch a template     *     * @param string $type name of resource     * @param array $functions array of functions to handle resource     */    function register_resource($type, $functions)    {        if (count($functions)==4) {            $this->_plugins['resource'][$type] =                array($functions, false);        } elseif (count($functions)==5) {            $this->_plugins['resource'][$type] =                array(array(array(&$functions[0], $functions[1])                            ,array(&$functions[0], $functions[2])                            ,array(&$functions[0], $functions[3])                            ,array(&$functions[0], $functions[4]))                      ,false);        } else {            $this->trigger_error("malformed function-list for '$type' in register_resource");        }    }    /**     * Unregisters a resource     *     * @param string $type name of resource     */    function unregister_resource($type)    {        unset($this->_plugins['resource'][$type]);    }    /**     * Registers a prefilter function to apply     * to a template before compiling     *     * @param string $function name of PHP function to register     */    function register_prefilter($function)    {    $_name = (is_array($function)) ? $function[1] : $function;        $this->_plugins['prefilter'][$_name]            = array($function, null, null, false);    }    /**     * Unregisters a prefilter function     *     * @param string $function name of PHP function     */    function unregister_prefilter($function)    {        unset($this->_plugins['prefilter'][$function]);    }    /**     * Registers a postfilter function to apply     * to a compiled template after compilation     *     * @param string $function name of PHP function to register     */    function register_postfilter($function)    {    $_name = (is_array($function)) ? $function[1] : $function;        $this->_plugins['postfilter'][$_name]            = array($function, null, null, false);    }    /**     * Unregisters a postfilter function     *     * @param string $function name of PHP function     */    function unregister_postfilter($function)    {        unset($this->_plugins['postfilter'][$function]);    }    /**     * Registers an output filter function to apply     * to a template output     *     * @param string $function name of PHP function     */    function register_outputfilter($function)    {    $_name = (is_array($function)) ? $function[1] : $function;        $this->_plugins['outputfilter'][$_name]            = array($function, null, null, false);    }    /**     * Unregisters an outputfilter function     *     * @param string $function name of PHP function     */    function unregister_outputfilter($function)    {        unset($this->_plugins['outputfilter'][$function]);    }    /**     * load a filter of specified type and name     *     * @param string $type filter type     * @param string $name filter name     */    function load_filter($type, $name)    {        switch ($type) {            case 'output':                $_params = array('plugins' => array(array($type . 'filter', $name, null, null, false)));                require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');                smarty_core_load_plugins($_params, $this);                break;            case 'pre':            case 'post':                if (!isset($this->_plugins[$type . 'filter'][$name]))                    $this->_plugins[$type . 'filter'][$name] = false;                break;        }    }    /**     * clear cached content for the given template and cache id     *     * @param string $tpl_file name of template file     * @param string $cache_id name of cache_id     * @param string $compile_id name of compile_id     * @param string $exp_time expiration time     * @return boolean     */    function clear_cache($tpl_file = null, $cache_id = null, $compile_id = null, $exp_time = null)    {        if (!isset($compile_id))            $compile_id = $this->compile_id;        if (!isset($tpl_file))            $compile_id = null;        $_auto_id = $this->_get_auto_id($cache_id, $compile_id);        if (!empty($this->cache_handler_func)) {            return call_user_func_array($this->cache_handler_func,                                  array('clear', &$this, &$dummy, $tpl_file, $cache_id, $compile_id, $exp_time));        } else {            $_params = array('auto_base' => $this->cache_dir,                            'auto_source' => $tpl_file,                            'auto_id' => $_auto_id,                            'exp_time' => $exp_time);            require_once(SMARTY_CORE_DIR . 'core.rm_auto.php');            return smarty_core_rm_auto($_params, $this);        }    }    /**     * clear the entire contents of cache (all templates)     *     * @param string $exp_time expire time     * @return boolean results of {@link smarty_core_rm_auto()}     */    function clear_all_cache($exp_time = null)    {        return $this->clear_cache(null, null, null, $exp_time);    }    /**     * test to see if valid cache exists for this template     *     * @param string $tpl_file name of template file     * @param string $cache_id     * @param string $compile_id     * @return string|false results of {@link _read_cache_file()}     */    function is_cached($tpl_file, $cache_id = null, $compile_id = null)    {        if (!$this->caching)            return false;        if (!isset($compile_id))            $compile_id = $this->compile_id;        $_params = array(            'tpl_file' => $tpl_file,            'cache_id' => $cache_id,            'compile_id' => $compile_id        );        require_once(SMARTY_CORE_DIR . 'core.read_cache_file.php');        return smarty_core_read_cache_file($_params, $this);    }    /**     * clear all the assigned template variables.     *     */    function clear_all_assign()    {        $this->_tpl_vars = array();    }    /**     * clears compiled version of specified template resource,     * or all compiled template files if one is not specified.     * This function is for advanced use only, not normally needed.     *     * @param string $tpl_file     * @param string $compile_id     * @param string $exp_time     * @return boolean results of {@link smarty_core_rm_auto()}     */    function clear_compiled_tpl($tpl_file = null, $compile_id = null, $exp_time = null)    {        if (!isset($compile_id)) {            $compile_id = $this->compile_id;        }        $_params = array('auto_base' => $this->compile_dir,                        'auto_source' => $tpl_file,                        'auto_id' => $compile_id,                        'exp_time' => $exp_time,                        'extensions' => array('.inc', '.php'));        require_once(SMARTY_CORE_DIR . 'core.rm_auto.php');        return smarty_core_rm_auto($_params, $this);    }    /**     * Checks whether requested template exists.     *     * @param string $tpl_file     * @return boolean     */    function template_exists($tpl_file)    {        $_params = array('resource_name' => $tpl_file, 'quiet'=>true, 'get_source'=>false);        return $this->_fetch_resource_info($_params);    }    /**     * Returns an array containing template variables     *     * @param string $name     * @param string $type     * @return array     */    function &get_template_vars($name=null)    {        if(!isset($name)) {            return $this->_tpl_vars;        }        if(isset($this->_tpl_vars[$name])) {            return $this->_tpl_vars[$name];        }    }    /**     * Returns an array containing config variables     *     * @param string $name     * @param string $type     * @return array     */    function &get_config_vars($name=null)    {        if(!isset($name) && is_array($this->_config[0])) {            return $this->_config[0]['vars'];        } else if(isset($this->_config[0]['vars'][$name])) {            return $this->_config[0]['vars'][$name];        }    }    /**     * trigger Smarty error     *     * @param string $error_msg     * @param integer $error_type     */    function trigger_error($error_msg, $error_type = E_USER_WARNING)    {        trigger_error("Smarty error: $error_msg", $error_type);    }    /**     * executes & displays the template results     *     * @param string $resource_name     * @param string $cache_id     * @param string $compile_id     */    function display($resource_name, $cache_id = null, $compile_id = null)    {        $this->fetch($resource_name, $cache_id, $compile_id, true);    }    /**     * executes & returns or displays the template results     *     * @param string $resource_name     * @param string $cache_id     * @param string $compile_id     * @param boolean $display     */    function fetch($resource_name, $cache_id = null, $compile_id = null, $display = false)    {        static $_cache_info = array();                $_smarty_old_error_level = $this->debugging ? error_reporting() : error_reporting(isset($this->error_reporting)               ? $this->error_reporting : error_reporting() & ~E_NOTICE);        if (!$this->debugging && $this->debugging_ctrl == 'URL') {            $_query_string = $this->request_use_auto_globals ? $_SERVER['QUERY_STRING'] : $GLOBALS['HTTP_SERVER_VARS']['QUERY_STRING'];            if (@strstr($_query_string, $this->_smarty_debug_id)) {                if (@strstr($_query_string, $this->_smarty_debug_id . '=on')) {                    // enable debugging for this browser session                    @setcookie('SMARTY_DEBUG', true);                    $this->debugging = true;                } elseif (@strstr($_query_string, $this->_smarty_debug_id . '=off')) {                    // disable debugging for this browser session                    @setcookie('SMARTY_DEBUG', false);                    $this->debugging = false;                } else {                    // enable debugging for this page                    $this->debugging = true;                }            } else {                $_cookie_var = $this->request_use_auto_globals ? $_COOKIE['SMARTY_DEBUG'] : $GLOBALS['HTTP_COOKIE_VARS']['SMARTY_DEBUG'];                $this->debugging = $_cookie_var ? true : false;            }        }        if ($this->debugging) {            // capture time for debugging info            $_params = array();            require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');            $_debug_start_time = smarty_core_get_microtime($_params, $this);            $this->_smarty_debug_info[] = array('type'      => 'template',                                                'filename'  => $resource_name,                                                'depth'     => 0);            $_included_tpls_idx = count($this->_smarty_debug_info) - 1;        }        if (!isset($compile_id)) {            $compile_id = $this->compile_id;        }        $this->_compile_id = $compile_id;        $this->_inclusion_depth = 0;        if ($this->caching) {            // save old cache_info, initialize cache_info            array_push($_cache_info, $this->_cache_info);            $this->_cache_info = array();            $_params = array(                'tpl_file' => $resource_name,                'cache_id' => $cache_id,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美人xxxx| 男人的天堂亚洲一区| 三级久久三级久久| 高清视频一区二区| 欧美一区二区播放| 亚洲人成网站在线| 国产一区二区女| 欧美人xxxx| 亚洲综合成人在线| 不卡的av中国片| 久久午夜电影网| 美女性感视频久久| 欧洲视频一区二区| 亚洲欧洲精品一区二区精品久久久| 日韩高清一级片| 91黄色免费观看| 亚洲人成精品久久久久| 高潮精品一区videoshd| 精品福利一区二区三区 | 久久精品国产免费| 91麻豆精品91久久久久久清纯| 综合av第一页| 99视频一区二区| 国产精品久久毛片| 成人妖精视频yjsp地址| 国产欧美精品一区二区色综合朱莉| 麻豆成人综合网| 欧美成人激情免费网| 奇米影视在线99精品| 678五月天丁香亚洲综合网| 亚洲国产精品一区二区www在线| eeuss鲁片一区二区三区| 国产精品超碰97尤物18| 波多野洁衣一区| 亚洲天堂av老司机| 91麻豆.com| 亚洲r级在线视频| 欧美精三区欧美精三区| 日韩高清一区在线| 日韩精品资源二区在线| 精品一区中文字幕| 国产校园另类小说区| 国产馆精品极品| 国产精品国产自产拍高清av王其| av激情亚洲男人天堂| 亚洲人123区| 欧美一区二区三区人| 久久99最新地址| 国产精品成人一区二区艾草| 色视频欧美一区二区三区| 亚洲成人免费电影| 精品国产乱码久久久久久浪潮| 国产精品123区| 亚洲精品高清在线观看| 91麻豆精品国产91久久久久久久久 | 成人激情文学综合网| 亚洲欧美一区二区三区国产精品| 精品视频在线免费看| 久久精品国产免费| 亚洲天堂精品视频| 欧美一区日韩一区| 丁香婷婷综合五月| 丝袜亚洲另类欧美| 久久久www免费人成精品| 色婷婷亚洲婷婷| 另类小说色综合网站| 国产精品久久久久aaaa樱花| 欧美日产国产精品| 国产成人午夜精品影院观看视频 | 国产在线视频精品一区| 综合欧美一区二区三区| 日韩一区二区三区视频在线观看| 国产高清在线观看免费不卡| 亚洲午夜精品17c| 国产欧美日韩一区二区三区在线观看 | 亚洲综合视频网| 久久精品日韩一区二区三区| 欧美亚洲综合另类| 国产精品一二三四| 日韩精品一二三四| 亚洲欧洲精品一区二区三区不卡| 欧美成人猛片aaaaaaa| 色综合久久综合网欧美综合网 | 国产人妖乱国产精品人妖| 在线看一区二区| 粉嫩嫩av羞羞动漫久久久| 午夜欧美一区二区三区在线播放| 国产日韩v精品一区二区| 7777精品伊人久久久大香线蕉| 成人av资源在线观看| 久久成人精品无人区| 一区二区三区高清| 中文字幕亚洲综合久久菠萝蜜| 精品国产三级电影在线观看| 欧美精品一卡二卡| 91官网在线免费观看| 99久久精品99国产精品 | 色一情一乱一乱一91av| 国产成人在线色| 精品亚洲porn| 欧美a级一区二区| 性做久久久久久免费观看欧美| 亚洲欧洲综合另类在线| 国产精品夫妻自拍| 国产精品三级电影| 中文字幕av一区 二区| 久久久久久久久99精品| 久久综合资源网| 欧美精品一区二区蜜臀亚洲| 欧美一区二区三级| 91精品蜜臀在线一区尤物| 欧美日韩一级视频| 欧美日韩成人高清| 91精品国产手机| 91精品国产综合久久久蜜臀粉嫩 | 日本欧美一区二区在线观看| 午夜亚洲福利老司机| 亚欧色一区w666天堂| 婷婷丁香激情综合| 视频一区免费在线观看| 日本特黄久久久高潮| 久久精品国产一区二区| 国产在线精品免费| 国产a区久久久| av福利精品导航| 色视频成人在线观看免| 在线不卡免费欧美| 日韩欧美国产一区二区在线播放 | 国产麻豆一精品一av一免费| 国产精品综合网| bt欧美亚洲午夜电影天堂| 色综合久久久久| 欧美三级乱人伦电影| 欧美老女人第四色| 久久综合成人精品亚洲另类欧美| 国产三级精品视频| 亚洲激情图片qvod| 青青草成人在线观看| 国产成人高清视频| 在线亚洲高清视频| 日韩一级黄色大片| 国产婷婷色一区二区三区| 亚洲日本青草视频在线怡红院 | 一区二区三区欧美视频| 亚洲午夜在线视频| 国产在线不卡一卡二卡三卡四卡| 国产不卡免费视频| 欧美三区在线观看| 欧美大黄免费观看| 亚洲色欲色欲www| 日韩成人免费在线| 成人理论电影网| 欧美日韩国产色站一区二区三区| 26uuu久久综合| 亚洲精品视频一区| 韩日精品视频一区| 色偷偷一区二区三区| 精品处破学生在线二十三| 亚洲天堂福利av| 国产在线播放一区三区四| 色综合欧美在线视频区| 日韩精品一区二区三区蜜臀| 亚洲精品国产精品乱码不99 | 色综合久久中文综合久久牛| 欧美成人a∨高清免费观看| 1024成人网| 国产精品99久| 欧美一区二区三区婷婷月色| 亚洲欧美一区二区视频| 日韩高清一级片| 在线视频欧美区| 中文字幕在线不卡一区| 国产原创一区二区| 9191精品国产综合久久久久久 | 久久久国产精品午夜一区ai换脸| 午夜精品久久一牛影视| 成人禁用看黄a在线| 精品国产青草久久久久福利| 亚洲第一福利一区| 91片黄在线观看| 国产亚洲va综合人人澡精品| 麻豆成人免费电影| 91麻豆精品国产91久久久使用方法 | 麻豆专区一区二区三区四区五区| 色婷婷国产精品久久包臀| 久久精品男人天堂av| 捆绑变态av一区二区三区| 欧美日韩国产在线观看| 亚洲综合在线第一页| 91麻豆免费看| 中文字幕亚洲一区二区va在线| 丁香婷婷深情五月亚洲| 久久精品亚洲精品国产欧美| 精品一区二区在线免费观看| 91精品国产综合久久久蜜臀图片| 午夜精品久久久久久久久久 | 高清免费成人av| 国产精品丝袜91| 成人小视频免费观看| 日本一区二区视频在线观看|