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

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

?? smarty.class.php

?? This is the script which used on 10minutemail.com for temporary email.
?? PHP
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
            $_params = array(
                'tpl_file' => $resource_name,
                'cache_id' => $cache_id,
                'compile_id' => $compile_id,
                'results' => null
            );
            require_once(SMARTY_CORE_DIR . 'core.read_cache_file.php');
            if (smarty_core_read_cache_file($_params, $this)) {
                $_smarty_results = $_params['results'];
                if (!empty($this->_cache_info['insert_tags'])) {
                    $_params = array('plugins' => $this->_cache_info['insert_tags']);
                    require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
                    smarty_core_load_plugins($_params, $this);
                    $_params = array('results' => $_smarty_results);
                    require_once(SMARTY_CORE_DIR . 'core.process_cached_inserts.php');
                    $_smarty_results = smarty_core_process_cached_inserts($_params, $this);
                }
                if (!empty($this->_cache_info['cache_serials'])) {
                    $_params = array('results' => $_smarty_results);
                    require_once(SMARTY_CORE_DIR . 'core.process_compiled_include.php');
                    $_smarty_results = smarty_core_process_compiled_include($_params, $this);
                }


                if ($display) {
                    if ($this->debugging)
                    {
                        // capture time for debugging info
                        $_params = array();
                        require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
                        $this->_smarty_debug_info[$_included_tpls_idx]['exec_time'] = smarty_core_get_microtime($_params, $this) - $_debug_start_time;
                        require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
                        $_smarty_results .= smarty_core_display_debug_console($_params, $this);
                    }
                    if ($this->cache_modified_check) {
                        $_server_vars = ($this->request_use_auto_globals) ? $_SERVER : $GLOBALS['HTTP_SERVER_VARS'];
                        $_last_modified_date = @substr($_server_vars['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_server_vars['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3);
                        $_gmt_mtime = gmdate('D, d M Y H:i:s', $this->_cache_info['timestamp']).' GMT';
                        if (@count($this->_cache_info['insert_tags']) == 0
                            && !$this->_cache_serials
                            && $_gmt_mtime == $_last_modified_date) {
                            if (php_sapi_name()=='cgi')
                                header('Status: 304 Not Modified');
                            else
                                header('HTTP/1.1 304 Not Modified');

                        } else {
                            header('Last-Modified: '.$_gmt_mtime);
                            echo $_smarty_results;
                        }
                    } else {
                            echo $_smarty_results;
                    }
                    error_reporting($_smarty_old_error_level);
                    // restore initial cache_info
                    $this->_cache_info = array_pop($_cache_info);
                    return true;
                } else {
                    error_reporting($_smarty_old_error_level);
                    // restore initial cache_info
                    $this->_cache_info = array_pop($_cache_info);
                    return $_smarty_results;
                }
            } else {
                $this->_cache_info['template'][$resource_name] = true;
                if ($this->cache_modified_check && $display) {
                    header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT');
                }
            }
        }

        // load filters that are marked as autoload
        if (count($this->autoload_filters)) {
            foreach ($this->autoload_filters as $_filter_type => $_filters) {
                foreach ($_filters as $_filter) {
                    $this->load_filter($_filter_type, $_filter);
                }
            }
        }

        $_smarty_compile_path = $this->_get_compile_path($resource_name);

        // if we just need to display the results, don't perform output
        // buffering - for speed
        $_cache_including = $this->_cache_including;
        $this->_cache_including = false;
        if ($display && !$this->caching && count($this->_plugins['outputfilter']) == 0) {
            if ($this->_is_compiled($resource_name, $_smarty_compile_path)
                    || $this->_compile_resource($resource_name, $_smarty_compile_path))
            {
                include($_smarty_compile_path);
            }
        } else {
            ob_start();
            if ($this->_is_compiled($resource_name, $_smarty_compile_path)
                    || $this->_compile_resource($resource_name, $_smarty_compile_path))
            {
                include($_smarty_compile_path);
            }
            $_smarty_results = ob_get_contents();
            ob_end_clean();

            foreach ((array)$this->_plugins['outputfilter'] as $_output_filter) {
                $_smarty_results = call_user_func_array($_output_filter[0], array($_smarty_results, &$this));
            }
        }

        if ($this->caching) {
            $_params = array('tpl_file' => $resource_name,
                        'cache_id' => $cache_id,
                        'compile_id' => $compile_id,
                        'results' => $_smarty_results);
            require_once(SMARTY_CORE_DIR . 'core.write_cache_file.php');
            smarty_core_write_cache_file($_params, $this);
            require_once(SMARTY_CORE_DIR . 'core.process_cached_inserts.php');
            $_smarty_results = smarty_core_process_cached_inserts($_params, $this);

            if ($this->_cache_serials) {
                // strip nocache-tags from output
                $_smarty_results = preg_replace('!(\{/?nocache\:[0-9a-f]{32}#\d+\})!s'
                                                ,''
                                                ,$_smarty_results);
            }
            // restore initial cache_info
            $this->_cache_info = array_pop($_cache_info);
        }
        $this->_cache_including = $_cache_including;

        if ($display) {
            if (isset($_smarty_results)) { echo $_smarty_results; }
            if ($this->debugging) {
                // capture time for debugging info
                $_params = array();
                require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
                $this->_smarty_debug_info[$_included_tpls_idx]['exec_time'] = (smarty_core_get_microtime($_params, $this) - $_debug_start_time);
                require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
                echo smarty_core_display_debug_console($_params, $this);
            }
            error_reporting($_smarty_old_error_level);
            return;
        } else {
            error_reporting($_smarty_old_error_level);
            if (isset($_smarty_results)) { return $_smarty_results; }
        }
    }

    /**
     * load configuration values
     *
     * @param string $file
     * @param string $section
     * @param string $scope
     */
    function config_load($file, $section = null, $scope = 'global')
    {
        require_once($this->_get_plugin_filepath('function', 'config_load'));
        smarty_function_config_load(array('file' => $file, 'section' => $section, 'scope' => $scope), $this);
    }

    /**
     * return a reference to a registered object
     *
     * @param string $name
     * @return object
     */
    function &get_registered_object($name) {
        if (!isset($this->_reg_objects[$name]))
        $this->_trigger_fatal_error("'$name' is not a registered object");

        if (!is_object($this->_reg_objects[$name][0]))
        $this->_trigger_fatal_error("registered '$name' is not an object");

        return $this->_reg_objects[$name][0];
    }

    /**
     * clear configuration values
     *
     * @param string $var
     */
    function clear_config($var = null)
    {
        if(!isset($var)) {
            // clear all values
            $this->_config = array(array('vars'  => array(),
                                         'files' => array()));
        } else {
            unset($this->_config[0]['vars'][$var]);
        }
    }

    /**
     * get filepath of requested plugin
     *
     * @param string $type
     * @param string $name
     * @return string|false
     */
    function _get_plugin_filepath($type, $name)
    {
        $_params = array('type' => $type, 'name' => $name);
        require_once(SMARTY_CORE_DIR . 'core.assemble_plugin_filepath.php');
        return smarty_core_assemble_plugin_filepath($_params, $this);
    }

   /**
     * test if resource needs compiling
     *
     * @param string $resource_name
     * @param string $compile_path
     * @return boolean
     */
    function _is_compiled($resource_name, $compile_path)
    {
        if (!$this->force_compile && file_exists($compile_path)) {
            if (!$this->compile_check) {
                // no need to check compiled file
                return true;
            } else {
                // get file source and timestamp
                $_params = array('resource_name' => $resource_name, 'get_source'=>false);
                if (!$this->_fetch_resource_info($_params)) {
                    return false;
                }
                if ($_params['resource_timestamp'] <= filemtime($compile_path)) {
                    // template not expired, no recompile
                    return true;
                } else {
                    // compile template
                    return false;
                }
            }
        } else {
            // compiled template does not exist, or forced compile
            return false;
        }
    }

   /**
     * compile the template
     *
     * @param string $resource_name
     * @param string $compile_path
     * @return boolean
     */
    function _compile_resource($resource_name, $compile_path)
    {

        $_params = array('resource_name' => $resource_name);
        if (!$this->_fetch_resource_info($_params)) {
            return false;
        }

        $_source_content = $_params['source_content'];
        $_cache_include    = substr($compile_path, 0, -4).'.inc';

        if ($this->_compile_source($resource_name, $_source_content, $_compiled_content, $_cache_include)) {
            // if a _cache_serial was set, we also have to write an include-file:
            if ($this->_cache_include_info) {
                require_once(SMARTY_CORE_DIR . 'core.write_compiled_include.php');
                smarty_core_write_compiled_include(array_merge($this->_cache_include_info, array('compiled_content'=>$_compiled_content, 'resource_name'=>$resource_name)),  $this);
            }

            $_params = array('compile_path'=>$compile_path, 'compiled_content' => $_compiled_content);
            require_once(SMARTY_CORE_DIR . 'core.write_compiled_resource.php');
            smarty_core_write_compiled_resource($_params, $this);

            return true;
        } else {
            return false;
        }

    }

   /**
     * compile the given source
     *
     * @param string $resource_name
     * @param string $source_content
     * @param string $compiled_content
     * @return boolean
     */
    function _compile_source($resource_name, &$source_content, &$compiled_content, $cache_include_path=null)
    {
        if (file_exists(SMARTY_DIR . $this->compiler_file)) {
            require_once(SMARTY_DIR . $this->compiler_file);
        } else {
            // use include_path
            require_once($this->compiler_file);
        }


        $smarty_compiler = new $this->compiler_class;

        $smarty_compiler->template_dir      = $this->template_dir;
        $smarty_compiler->compile_dir       = $this->compile_dir;
        $smarty_compiler->plugins_dir       = $this->plugins_dir;
        $smarty_compiler->config_dir        = $this->config_dir;
        $smarty_compiler->force_compile     = $this->force_compile;
        $smarty_compiler->caching           = $this->caching;
        $smarty_compiler->php_handling      = $this->php_handling;
        $smarty_compiler->left_delimiter    = $this->left_delimiter;
        $smarty_compiler->right_delimiter   = $this->right_delimiter;
        $smarty_compiler->_version          = $this->_version;
        $smarty_compiler->security          = $this->security;
        $smarty_compiler->secure_dir        = $this->secure_dir;
        $smarty_compiler->security_settings = $this->security_settings;
        $smarty_compiler->trusted_dir       = $this->trusted_dir;
        $smarty_compiler->use_sub_dirs      = $this->use_sub_dirs;
        $smarty_compiler->_reg_objects      = &$this->_reg_objects;
        $smarty_compiler->_plugins          = &$this->_plugins;
        $smarty_compiler->_tpl_vars         = &$this->_tpl_vars;
        $smarty_compiler->default_modifiers = $this->default_modifiers;
        $smarty_compiler->compile_id        = $this->_compile_id;
        $smarty_compiler->_config            = $this->_config;
        $smarty_compiler->request_use_auto_globals  = $this->request_use_auto_globals;

        if (isset($cache_include_path) && isset($this->_cache_serials[$cache_include_path])) {
            $smarty_compiler->_cache_serial = $this->_cache_serials[$cache_include_path];
        }
        $smarty_compiler->_cache_include = $cache_include_path;


        $_results = $smarty_compiler->_compile_file($resource_name, $source_content, $compiled_content);

        if ($smarty_compiler->_cache_serial) {
            $this->_cache_include_info = array(
                'cache_serial'=>$smarty_compiler->_cache_serial
                ,'plugins_code'=>$smarty_compiler->_plugins_code
                ,'include_file_path' => $cache_include_path);

        } else {
            $this->_cache_include_info = null;

        }

        return $_results;
    }

    /**
     * Get the compile path for this resource
     *
     * @param string $resource_name
     * @return string results of {@link _get_auto_filename()}
     */
    function _get_compile_path($resource_name)
    {
        return $this->_get_auto_filename($this->compile_dir, $resource_name,
                                         $this->_compile_id) . '.php';
    }

    /**
     * fetch the template info. Gets timestamp, and source
     * if get_source is true
     *
     * sets $source_content to the source of the template, and
     * $resource_timestamp to its time stamp
     * @param string $resource_name
     * @param string $source_content
     * @param integer $resource_timestamp
     * @param boolean $get_source
     * @param boolean $quiet
     * @return boolean
     */

    function _fetch_resource_info(&$params)
    {
        if(!isset($params['get_source'])) { $params['get_source'] = true; }
        if(!isset($params['quiet'])) { $params['quiet'] = false; }

        $_return = false;
        $_params = array('resource_name' => $params['resource_name']) ;
        if (isset($params['resource_base_path']))
            $_params['resource_base_path'] = $params['resource_base_path'];
        else
            $_params['resource_base_path'] = $this->template_dir;

        if ($this->_parse_resource_name($_params)) {
            $_resource_type = $_params['resource_type'];
            $_resource_name = $_params['resource_name'];
            switch ($_resource_type) {
                case 'file':
                    if ($params['get_source']) {
                        $params['source_content'] = $this->_read_file($_resource_name);
                    }
                    $params['resource_timestamp'] = filemtime($_resource_name);
                    $_return = is_file($_resource_name);
                    break;

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产日韩a在线播放性色| 日韩国产精品大片| 欧美三级视频在线| 国产一区二区在线视频| 亚洲男人天堂一区| 久久综合九色综合久久久精品综合| 91麻豆国产香蕉久久精品| 久久97超碰色| 婷婷夜色潮精品综合在线| 国产精品久久久久影院亚瑟| 精品免费一区二区三区| 欧美日韩综合色| 色综合天天做天天爱| 国产精品亚洲一区二区三区妖精| 丝袜美腿亚洲综合| 一区二区视频免费在线观看| 国产精品拍天天在线| 久久综合精品国产一区二区三区 | 亚洲一区欧美一区| 日本一区二区成人在线| 日韩精品在线一区| 日韩天堂在线观看| 日韩一区二区在线观看| 8x8x8国产精品| 欧美久久久久久蜜桃| 欧美在线观看视频一区二区三区| 93久久精品日日躁夜夜躁欧美| 国产高清亚洲一区| 国产精品99久久久久| 久久er99热精品一区二区| 麻豆精品新av中文字幕| 另类小说图片综合网| 免费在线看成人av| 免费亚洲电影在线| 精品午夜一区二区三区在线观看 | 国产河南妇女毛片精品久久久| 久久精品999| 精久久久久久久久久久| 激情五月婷婷综合| 国产成人免费在线| 成人性色生活片| 99这里只有精品| 色94色欧美sute亚洲线路一久| 一本高清dvd不卡在线观看| 色婷婷久久久亚洲一区二区三区| 91在线看国产| 在线观看欧美精品| 欧美丰满嫩嫩电影| 日韩欧美黄色影院| 久久久激情视频| 日韩一区在线播放| 亚洲午夜电影网| 免费高清在线一区| 国产乱人伦偷精品视频不卡| 懂色一区二区三区免费观看| 成a人片国产精品| 91高清视频在线| 欧美一级二级在线观看| 久久免费的精品国产v∧| 国产精品传媒在线| 午夜久久久久久久久久一区二区| 捆绑调教一区二区三区| 成人精品国产一区二区4080| 一本色道久久综合亚洲91| 精品视频在线免费看| 欧美成人精品二区三区99精品| 国产亚洲综合性久久久影院| 亚洲免费看黄网站| 日本三级亚洲精品| 国产激情偷乱视频一区二区三区 | 欧美第一区第二区| 中文字幕在线播放不卡一区| 亚洲无人区一区| 国内精品国产成人| 色丁香久综合在线久综合在线观看| 欧美日韩免费电影| 久久蜜桃一区二区| 亚洲电影激情视频网站| 激情欧美日韩一区二区| 91视频在线观看免费| 欧美一区二区福利在线| 亚洲视频小说图片| 麻豆高清免费国产一区| 色婷婷国产精品综合在线观看| 欧美一区二区三区视频| 日韩理论片一区二区| 久久精品久久精品| 欧美性大战久久| 国产婷婷色一区二区三区 | 丰满少妇在线播放bd日韩电影| 欧美三区免费完整视频在线观看| 久久久不卡网国产精品一区| 亚洲第一电影网| 99久久国产免费看| 久久亚洲精华国产精华液| 亚洲午夜一区二区| 9久草视频在线视频精品| 欧美mv和日韩mv的网站| 一区二区三区在线视频免费| 国产盗摄女厕一区二区三区 | 欧美日韩国产精品自在自线| 国产精品美女久久福利网站| 精品一区二区三区免费观看| 欧美三级中文字幕在线观看| 国产精品伦理在线| 国产馆精品极品| 精品99一区二区三区| 午夜日韩在线电影| 欧美性色aⅴ视频一区日韩精品| 国产性天天综合网| 精品一区二区三区免费观看| 91精品国产色综合久久| 亚洲午夜影视影院在线观看| 91亚洲国产成人精品一区二三 | 国产情人综合久久777777| 看国产成人h片视频| 欧美精品乱码久久久久久按摩| 亚洲婷婷综合久久一本伊一区| 国产 日韩 欧美大片| 精品99999| 精品一区二区三区影院在线午夜 | 久久综合九色综合97婷婷女人 | 91碰在线视频| 国产精品激情偷乱一区二区∴| 国产精品综合久久| 久久综合丝袜日本网| 国产乱码精品1区2区3区| 欧美精品一区二区三区高清aⅴ| 精品一二三四在线| 2023国产一二三区日本精品2022| 日韩国产高清影视| 日韩一区二区视频| 老司机免费视频一区二区| 精品处破学生在线二十三| 激情综合网最新| 国产欧美一区二区精品性色| 国产成人精品一区二| 国产精品沙发午睡系列990531| 成人久久久精品乱码一区二区三区| 中文字幕精品—区二区四季| 99精品欧美一区二区蜜桃免费| 中文字幕亚洲不卡| 日本精品一区二区三区高清| 亚洲宅男天堂在线观看无病毒| 欧美日韩免费视频| 日韩国产欧美在线播放| 欧美电影免费提供在线观看| 久久精品国产**网站演员| 国产无一区二区| 99久久婷婷国产精品综合| 一区二区三区中文字幕| 在线不卡中文字幕| 激情图区综合网| 国产精品成人一区二区三区夜夜夜 | 欧美日韩不卡一区二区| 日本不卡一区二区| 久久免费午夜影院| 95精品视频在线| 日韩高清在线电影| 亚洲精品一区二区三区香蕉| 福利一区二区在线观看| 一区二区在线观看不卡| 欧美一区二区黄色| 国产宾馆实践打屁股91| 亚洲精品高清在线| 日韩欧美一区二区三区在线| 国产成都精品91一区二区三| 亚洲黄色性网站| 欧美成人三级电影在线| 91香蕉视频污| 久久精品国产99久久6| 欧美国产禁国产网站cc| 欧美色综合网站| 国产麻豆视频一区二区| 亚洲另类在线视频| www久久精品| 欧美视频一区二区| 国产精品自产自拍| 亚洲国产精品视频| 国产精品水嫩水嫩| 欧美一区二区三区成人| 97久久人人超碰| 国内不卡的二区三区中文字幕| 亚洲桃色在线一区| 精品国产欧美一区二区| 91女厕偷拍女厕偷拍高清| 国模冰冰炮一区二区| 亚洲成人先锋电影| 中文字幕一区二区日韩精品绯色| 91精品国产aⅴ一区二区| 99这里都是精品| 国产一区二区电影| 视频一区二区三区中文字幕| 中文字幕一区二区三区视频| 欧美变态tickle挠乳网站| 欧美午夜不卡在线观看免费| 成人免费视频免费观看| 免费欧美在线视频| 天天亚洲美女在线视频| 亚洲欧美日韩国产一区二区三区|