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

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

?? smarty.class.php

?? This is the script which used on 10minutemail.com for temporary email.
?? PHP
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(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;
        } elseif(isset($this->_tpl_vars[$name])) {
            return $this->_tpl_vars[$name];
        } else {
            // var non-existant, return valid reference
            $_tmp = null;
            return $_tmp;   
        }
    }

    /**
     * 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];
        } else {
            // var non-existant, return valid reference
            $_tmp = null;
            return $_tmp;
        }
    }

    /**
     * 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 {
                $this->debugging = (bool)($this->request_use_auto_globals ? @$_COOKIE['SMARTY_DEBUG'] : @$GLOBALS['HTTP_COOKIE_VARS']['SMARTY_DEBUG']);
            }
        }

        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();

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美高清激情brazzers| 欧美一区二区三区视频免费| 亚洲永久精品大片| 精品对白一区国产伦| 99久久综合国产精品| 日本中文一区二区三区| 中文字幕av在线一区二区三区| 欧美精品一卡两卡| 99久久精品免费看| 精品亚洲成av人在线观看| 亚洲伊人伊色伊影伊综合网| 国产亚洲综合色| 制服.丝袜.亚洲.另类.中文| 波波电影院一区二区三区| 精品中文字幕一区二区| 亚洲aaa精品| 亚洲视频你懂的| 欧美精品一区二区三区在线 | www.日韩av| 日本怡春院一区二区| 亚洲一区中文在线| 中文字幕亚洲区| 久久精品视频免费观看| 日韩视频一区二区三区在线播放 | 日本精品裸体写真集在线观看| 狠狠色综合日日| 免费在线观看日韩欧美| 亚洲gay无套男同| 亚洲激情av在线| 亚洲三级在线免费| 国产精品久久久久影视| 国产精品视频观看| 国产欧美日韩亚州综合| 久久久久久久久久久久久久久99| 日韩欧美色电影| 91精品久久久久久久久99蜜臂| 在线观看网站黄不卡| 色婷婷激情综合| 色欧美片视频在线观看| 色综合久久中文字幕综合网| 99视频在线精品| www.色精品| 91色婷婷久久久久合中文| 99精品一区二区三区| 色伊人久久综合中文字幕| 成人av一区二区三区| 福利一区福利二区| heyzo一本久久综合| k8久久久一区二区三区| 99re视频精品| 欧洲精品在线观看| 欧美性受xxxx黑人xyx性爽| 欧洲色大大久久| 3d成人动漫网站| 日韩视频一区二区在线观看| 欧美刺激午夜性久久久久久久| 欧美电影免费提供在线观看| 久久亚洲私人国产精品va媚药| 亚洲精品在线免费播放| 国产欧美一区二区三区在线看蜜臀 | 7777精品久久久大香线蕉| 欧美一区二区视频观看视频| 日韩精品一区在线观看| 久久久精品中文字幕麻豆发布| 国产精品系列在线| 一区二区三区欧美| 日韩av中文字幕一区二区三区| 久久国产尿小便嘘嘘尿| 国产精品18久久久久久久久| av一区二区三区| 欧美性三三影院| 日韩欧美在线观看一区二区三区| 久久免费的精品国产v∧| 欧美国产一区二区在线观看| 亚洲色图制服丝袜| 首页国产欧美日韩丝袜| 日韩欧美一级在线播放| 国产欧美一区二区精品性色 | 亚洲国产日韩av| 美女视频网站久久| 成人免费电影视频| 欧美精品久久久久久久多人混战| 日韩欧美国产一区二区在线播放| 国产无一区二区| 午夜伊人狠狠久久| 成人动漫精品一区二区| 欧美精品乱码久久久久久| 亚洲国产精品成人久久综合一区| 亚洲成人tv网| 成人免费毛片高清视频| 欧美日韩一区久久| 国产视频911| 日韩精品91亚洲二区在线观看 | 亚洲午夜在线观看视频在线| 激情综合五月婷婷| 欧美在线观看视频一区二区 | 成人的网站免费观看| 91精品欧美福利在线观看| 中文字幕一区二区视频| 精品一区二区国语对白| 日本韩国一区二区三区| 国产性做久久久久久| 午夜精品久久久久久不卡8050| 国产精品1区二区.| 日韩欧美综合一区| 亚洲6080在线| 97se亚洲国产综合自在线| 精品国产免费人成在线观看| 亚洲午夜免费福利视频| 成人动漫一区二区在线| 精品捆绑美女sm三区| 性欧美疯狂xxxxbbbb| 99国产精品国产精品毛片| 26uuu色噜噜精品一区| 91福利社在线观看| 久久无码av三级| 久久精品国产澳门| 欧美剧情电影在线观看完整版免费励志电影 | 不卡免费追剧大全电视剧网站| 精品少妇一区二区| 日韩中文字幕1| 欧美午夜精品理论片a级按摩| 中文字幕av一区二区三区高| 国产在线日韩欧美| 91精品国产一区二区三区| 亚洲自拍偷拍综合| 91片在线免费观看| 国产精品久久影院| 国产精品538一区二区在线| 欧美成人伊人久久综合网| 日产国产欧美视频一区精品| 欧美美女一区二区| 亚洲成av人片在www色猫咪| 在线观看亚洲精品| 亚洲自拍偷拍图区| 欧美丝袜自拍制服另类| 亚洲欧美日韩国产中文在线| 99视频在线精品| 亚洲欧洲无码一区二区三区| 北条麻妃一区二区三区| 亚洲欧美在线aaa| 91香蕉视频黄| 亚洲丝袜另类动漫二区| 91社区在线播放| 亚洲男同1069视频| 欧美性大战xxxxx久久久| 亚洲国产视频一区二区| 欧美丝袜丝交足nylons| 日韩一区欧美二区| 8v天堂国产在线一区二区| 日日噜噜夜夜狠狠视频欧美人 | 国产精品美女久久久久av爽李琼| 粉嫩aⅴ一区二区三区四区五区| 国产午夜精品一区二区三区视频| 丰满少妇久久久久久久| 中文字幕亚洲精品在线观看| 色婷婷激情一区二区三区| 亚洲成人av免费| 日韩视频在线观看一区二区| 国产在线麻豆精品观看| 国产精品美女一区二区三区| 91色在线porny| 日韩国产高清影视| 久久久不卡影院| 91视频在线看| 日韩vs国产vs欧美| 久久99国内精品| 亚洲国产电影在线观看| 在线观看三级视频欧美| 久久99九九99精品| 综合久久久久久| 欧美一二三四在线| 成人成人成人在线视频| 亚洲国产一区二区视频| 日韩小视频在线观看专区| 国产精品一区久久久久| 亚洲欧美另类久久久精品2019| 欧美日韩国产成人在线免费| 国内国产精品久久| 中文字幕日本不卡| 日韩一级成人av| 色综合视频在线观看| 免费人成黄页网站在线一区二区| 日本一区二区三区四区在线视频 | 国产精品国产a| 欧美电影在线免费观看| 国产电影一区二区三区| 亚洲综合无码一区二区| 精品国精品国产| 色综合天天性综合| 成人免费视频播放| 亚洲一区二区在线免费看| 欧美精品一区男女天堂| 欧美亚洲禁片免费| 精品对白一区国产伦| 91麻豆产精品久久久久久| 久久99精品国产.久久久久久 | 亚洲国产欧美日韩另类综合| 精品国产乱码久久久久久久| 91高清视频在线|