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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? smarty.class.php

?? 類似youtube的視頻分享網(wǎng)站源碼。有后臺(tái)管理系統(tǒng)及模板
?? PHP
?? 第 1 頁 / 共 5 頁
字號(hào):
    }    /**     * 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,

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
不卡区在线中文字幕| 91麻豆国产香蕉久久精品| 丝袜亚洲另类欧美| 亚洲免费av在线| 亚洲男人都懂的| 亚洲免费av观看| 亚洲韩国精品一区| 亚洲成av人片一区二区梦乃| 亚洲成人免费观看| 日本aⅴ免费视频一区二区三区| 亚洲自拍偷拍麻豆| 亚州成人在线电影| 日本va欧美va精品| 国产一区二区三区免费观看| 国产精品小仙女| 成人黄色在线网站| 91精彩视频在线观看| 日本道免费精品一区二区三区| 欧美午夜一区二区三区| 欧美高清视频一二三区| 欧美电影免费提供在线观看| 久久亚洲精品小早川怜子| 国产欧美日韩在线观看| 亚洲日穴在线视频| 亚洲成在人线免费| 久久机这里只有精品| 国产高清视频一区| 91老师片黄在线观看| 欧美日韩国产在线观看| 日韩亚洲欧美中文三级| 国产亚洲一本大道中文在线| 中文字幕日本不卡| 午夜精品久久久久影视| 日韩精品每日更新| 国产精品888| 91福利国产成人精品照片| 欧美二区在线观看| 国产人成一区二区三区影院| 亚洲欧洲国产日本综合| 日韩二区三区在线观看| 国产福利91精品一区| 在线欧美日韩精品| 精品少妇一区二区三区在线播放 | 亚洲精品国产精华液| 五月天亚洲婷婷| 国产传媒日韩欧美成人| 在线观看免费一区| 久久影院视频免费| 亚洲一级电影视频| 国产乱对白刺激视频不卡| 色老汉av一区二区三区| 26uuu国产一区二区三区| 亚洲乱码精品一二三四区日韩在线| 日韩国产一区二| av成人免费在线| 欧美一区二区三区视频| 综合自拍亚洲综合图不卡区| 日韩1区2区3区| 97超碰欧美中文字幕| 日韩欧美久久一区| 一区二区三区国产豹纹内裤在线| 久草热8精品视频在线观看| 日本福利一区二区| 中文字幕乱码久久午夜不卡 | 欧美性大战久久久久久久蜜臀| 欧美精品一区二区久久久| 亚洲一区二区三区四区在线观看| 国产精品主播直播| 欧美一区二区视频在线观看2020 | 久久久一区二区三区| 一区二区三区美女| 成人网男人的天堂| 精品日韩欧美在线| 午夜视频在线观看一区| 北条麻妃一区二区三区| 欧美精品一区二区三区一线天视频 | 日韩一区二区三区视频| 一区二区三区视频在线看| 床上的激情91.| 久久影音资源网| 蜜臀av一区二区在线观看| 欧美三级日韩在线| 亚洲欧洲制服丝袜| 波多野结衣欧美| 国产精品沙发午睡系列990531| 国产制服丝袜一区| 日韩视频一区二区三区在线播放 | 一本色道综合亚洲| 国产三级精品视频| 狠狠网亚洲精品| 欧美xxxx在线观看| 另类小说视频一区二区| 91麻豆精品国产91久久久资源速度| 樱花影视一区二区| 色婷婷一区二区| 亚洲精品成人在线| 91麻豆精东视频| 亚洲午夜久久久久久久久久久 | 91 com成人网| 亚洲国产三级在线| 欧美少妇xxx| 亚洲国产美国国产综合一区二区| gogo大胆日本视频一区| 亚洲欧洲在线观看av| 北条麻妃国产九九精品视频| 亚洲婷婷国产精品电影人久久| av一区二区三区在线| 中文字幕在线不卡国产视频| 成人avav影音| 亚洲免费av高清| 精品视频一区二区不卡| 婷婷久久综合九色综合伊人色| 欧美老女人在线| 免费成人性网站| 久久久久久夜精品精品免费| 国产精品一区专区| 国产精品久久久久一区 | 久久久av毛片精品| 大桥未久av一区二区三区中文| 国产精品午夜春色av| av中文一区二区三区| 综合电影一区二区三区 | 欧美成人午夜电影| 国内不卡的二区三区中文字幕| 久久久亚洲午夜电影| 成人黄色在线网站| 一区二区高清视频在线观看| 欧美肥胖老妇做爰| 国产精品资源在线观看| 国产精品久久久久影视| 欧美无砖专区一中文字| 麻豆精品久久久| 国产精品婷婷午夜在线观看| 91福利区一区二区三区| 秋霞影院一区二区| 欧美经典一区二区三区| 91电影在线观看| 精油按摩中文字幕久久| 国产精品国产三级国产aⅴ入口| 欧洲人成人精品| 久久99国产精品免费网站| 中文在线资源观看网站视频免费不卡 | 国内外成人在线| 最新中文字幕一区二区三区| 欧美日韩高清一区二区| 国产精品影视在线| 亚洲高清不卡在线| 国产日韩欧美电影| 欧美午夜理伦三级在线观看| 国产在线国偷精品免费看| 亚洲欧洲精品成人久久奇米网| 6080亚洲精品一区二区| 成人在线综合网站| 日韩成人一级大片| 国产精品久久久久天堂| 6080日韩午夜伦伦午夜伦| 成人夜色视频网站在线观看| 日韩主播视频在线| 亚洲欧美在线视频| 精品美女一区二区| 欧美性一二三区| 丁香婷婷深情五月亚洲| 男人的j进女人的j一区| 亚洲欧洲国产日韩| 欧美精品一区二区三区很污很色的| 欧美在线观看一区| 处破女av一区二区| 久久99九九99精品| 亚欧色一区w666天堂| 最新国产の精品合集bt伙计| 精品国内二区三区| 欧美伦理视频网站| 一本色道亚洲精品aⅴ| 丁香婷婷综合网| 国产综合色精品一区二区三区| 亚洲一二三区不卡| 国产精品毛片久久久久久久| 日韩一级欧美一级| 欧美日韩综合不卡| 91视频免费观看| 成人免费视频视频| 黄色小说综合网站| 久久99久久精品| 成人美女在线观看| 国产一区二区不卡| 老司机午夜精品99久久| 日本欧美大码aⅴ在线播放| 亚洲午夜久久久久久久久电影院 | 蜜桃av一区二区| 亚洲国产精品视频| 亚洲欧美日韩中文播放| 国产精品久久久久久亚洲毛片| 久久综合九色综合欧美亚洲| 欧美精品 国产精品| 欧美日韩国产一级片| 欧美唯美清纯偷拍| 在线观看91视频| 欧美揉bbbbb揉bbbbb| 在线看国产一区| 在线观看国产日韩|