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

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

?? smarty.class.php

?? Ourplus09Beta 用PHP編寫的系統(tǒng),其特點(diǎn)是簡潔大方
?? PHP
?? 第 1 頁 / 共 5 頁
字號(hào):
                    if ($params['get_source']) {                        $_source_return = isset($this->_plugins['resource'][$_resource_type]) &&                            call_user_func_array($this->_plugins['resource'][$_resource_type][0][0],                                                 array($_resource_name, &$params['source_content'], &$this));                    } else {                        $_source_return = true;                    }                    $_timestamp_return = isset($this->_plugins['resource'][$_resource_type]) &&                        call_user_func_array($this->_plugins['resource'][$_resource_type][0][1],                                             array($_resource_name, &$params['resource_timestamp'], &$this));                    $_return = $_source_return && $_timestamp_return;                    break;            }        }        if (!$_return) {            // see if we can get a template with the default template handler            if (!empty($this->default_template_handler_func)) {                if (!is_callable($this->default_template_handler_func)) {                    $this->trigger_error("default template handler function \"$this->default_template_handler_func\" doesn't exist.");                } else {                    $_return = call_user_func_array(                        $this->default_template_handler_func,                        array($_params['resource_type'], $_params['resource_name'], &$params['source_content'], &$params['resource_timestamp'], &$this));                }            }        }        if (!$_return) {            if (!$params['quiet']) {                $this->trigger_error('unable to read resource: "' . $params['resource_name'] . '"');            }        } else if ($_return && $this->security) {            require_once(SMARTY_CORE_DIR . 'core.is_secure.php');            if (!smarty_core_is_secure($_params, $this)) {                if (!$params['quiet'])                    $this->trigger_error('(secure mode) accessing "' . $params['resource_name'] . '" is not allowed');                $params['source_content'] = null;                $params['resource_timestamp'] = null;                return false;            }        }        return $_return;    }    /**     * parse out the type and name from the resource     *     * @param string $resource_base_path     * @param string $resource_name     * @param string $resource_type     * @param string $resource_name     * @return boolean     */    function _parse_resource_name(&$params)    {        // split tpl_path by the first colon        $_resource_name_parts = explode(':', $params['resource_name'], 2);        if (count($_resource_name_parts) == 1) {            // no resource type given            $params['resource_type'] = $this->default_resource_type;            $params['resource_name'] = $_resource_name_parts[0];        } else {            if(strlen($_resource_name_parts[0]) == 1) {                // 1 char is not resource type, but part of filepath                $params['resource_type'] = $this->default_resource_type;                $params['resource_name'] = $params['resource_name'];            } else {                $params['resource_type'] = $_resource_name_parts[0];                $params['resource_name'] = $_resource_name_parts[1];            }        }        if ($params['resource_type'] == 'file') {            if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $params['resource_name'])) {                // relative pathname to $params['resource_base_path']                // use the first directory where the file is found                foreach ((array)$params['resource_base_path'] as $_curr_path) {                    $_fullpath = $_curr_path . DIRECTORY_SEPARATOR . $params['resource_name'];                    if (file_exists($_fullpath) && is_file($_fullpath)) {                        $params['resource_name'] = $_fullpath;                        return true;                    }                    // didn't find the file, try include_path                    $_params = array('file_path' => $_fullpath);                    require_once(SMARTY_CORE_DIR . 'core.get_include_path.php');                    if(smarty_core_get_include_path($_params, $this)) {                        $params['resource_name'] = $_params['new_file_path'];                        return true;                    }                }                return false;            } else {                /* absolute path */                return file_exists($params['resource_name']);            }        } elseif (empty($this->_plugins['resource'][$params['resource_type']])) {            $_params = array('type' => $params['resource_type']);            require_once(SMARTY_CORE_DIR . 'core.load_resource_plugin.php');            smarty_core_load_resource_plugin($_params, $this);        }        return true;    }    /**     * Handle modifiers     *     * @param string|null $modifier_name     * @param array|null $map_array     * @return string result of modifiers     */    function _run_mod_handler()    {        $_args = func_get_args();        list($_modifier_name, $_map_array) = array_splice($_args, 0, 2);        list($_func_name, $_tpl_file, $_tpl_line) =            $this->_plugins['modifier'][$_modifier_name];        $_var = $_args[0];        foreach ($_var as $_key => $_val) {            $_args[0] = $_val;            $_var[$_key] = call_user_func_array($_func_name, $_args);        }        return $_var;    }    /**     * Remove starting and ending quotes from the string     *     * @param string $string     * @return string     */    function _dequote($string)    {        if (($string{0} == "'" || $string{0} == '"') &&            $string{strlen($string)-1} == $string{0})            return substr($string, 1, -1);        else            return $string;    }    /**     * read in a file from line $start for $lines.     * read the entire file if $start and $lines are null.     *     * @param string $filename     * @param integer $start     * @param integer $lines     * @return string     */    function _read_file($filename)    {        if ( file_exists($filename) && ($fd = @fopen($filename, 'rb')) ) {            $contents = ($size = filesize($filename)) ? fread($fd, $size) : '';            fclose($fd);            return $contents;        } else {            return false;        }    }    /**     * get a concrete filename for automagically created content     *     * @param string $auto_base     * @param string $auto_source     * @param string $auto_id     * @return string     * @staticvar string|null     * @staticvar string|null     */    function _get_auto_filename($auto_base, $auto_source = null, $auto_id = null)    {        $_compile_dir_sep =  $this->use_sub_dirs ? DIRECTORY_SEPARATOR : '^';        $_return = $auto_base . DIRECTORY_SEPARATOR;        if(isset($auto_id)) {            // make auto_id safe for directory names            $auto_id = str_replace('%7C',$_compile_dir_sep,(urlencode($auto_id)));            // split into separate directories            $_return .= $auto_id . $_compile_dir_sep;        }        if(isset($auto_source)) {            // make source name safe for filename            $_filename = urlencode(basename($auto_source));            $_crc32 = sprintf('%08X', crc32($auto_source));            // prepend %% to avoid name conflicts with            // with $params['auto_id'] names            $_crc32 = substr($_crc32, 0, 2) . $_compile_dir_sep .                      substr($_crc32, 0, 3) . $_compile_dir_sep . $_crc32;            $_return .= '%%' . $_crc32 . '%%' . $_filename;        }        return $_return;    }    /**     * unlink a file, possibly using expiration time     *     * @param string $resource     * @param integer $exp_time     */    function _unlink($resource, $exp_time = null)    {        if(isset($exp_time)) {            if(time() - @filemtime($resource) >= $exp_time) {                return @unlink($resource);            }        } else {            return @unlink($resource);        }    }    /**     * returns an auto_id for auto-file-functions     *     * @param string $cache_id     * @param string $compile_id     * @return string|null     */    function _get_auto_id($cache_id=null, $compile_id=null) {    if (isset($cache_id))        return (isset($compile_id)) ? $cache_id . '|' . $compile_id  : $cache_id;    elseif(isset($compile_id))        return $compile_id;    else        return null;    }    /**     * trigger Smarty plugin error     *     * @param string $error_msg     * @param string $tpl_file     * @param integer $tpl_line     * @param string $file     * @param integer $line     * @param integer $error_type     */    function _trigger_fatal_error($error_msg, $tpl_file = null, $tpl_line = null,            $file = null, $line = null, $error_type = E_USER_ERROR)    {        if(isset($file) && isset($line)) {            $info = ' ('.basename($file).", line $line)";        } else {            $info = '';        }        if (isset($tpl_line) && isset($tpl_file)) {            $this->trigger_error('[in ' . $tpl_file . ' line ' . $tpl_line . "]: $error_msg$info", $error_type);        } else {            $this->trigger_error($error_msg . $info, $error_type);        }    }    /**     * callback function for preg_replace, to call a non-cacheable block     * @return string     */    function _process_compiled_include_callback($match) {        $_func = '_smarty_tplfunc_'.$match[2].'_'.$match[3];        ob_start();        $_func($this);        $_ret = ob_get_contents();        ob_end_clean();        return $_ret;    }    /**     * called for included templates     *     * @param string $_smarty_include_tpl_file     * @param string $_smarty_include_vars     */    // $_smarty_include_tpl_file, $_smarty_include_vars    function _smarty_include($params)    {        if ($this->debugging) {            $_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'  => $params['smarty_include_tpl_file'],                                                  'depth'     => ++$this->_inclusion_depth);            $included_tpls_idx = count($this->_smarty_debug_info) - 1;        }        $this->_tpl_vars = array_merge($this->_tpl_vars, $params['smarty_include_vars']);        // config vars are treated as local, so push a copy of the        // current ones onto the front of the stack        array_unshift($this->_config, $this->_config[0]);        $_smarty_compile_path = $this->_get_compile_path($params['smarty_include_tpl_file']);        if ($this->_is_compiled($params['smarty_include_tpl_file'], $_smarty_compile_path)            || $this->_compile_resource($params['smarty_include_tpl_file'], $_smarty_compile_path))        {            include($_smarty_compile_path);        }        // pop the local vars off the front of the stack        array_shift($this->_config);        $this->_inclusion_depth--;        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;        }        if ($this->caching) {            $this->_cache_info['template'][$params['smarty_include_tpl_file']] = true;        }    }    /**     * get or set an array of cached attributes for function that is     * not cacheable     * @return array     */    function &_smarty_cache_attrs($cache_serial, $count) {        $_cache_attrs =& $this->_cache_info['cache_attrs'][$cache_serial][$count];        if ($this->_cache_including) {            /* return next set of cache_attrs */            $_return =& current($_cache_attrs);            next($_cache_attrs);            return $_return;        } else {            /* add a reference to a new set of cache_attrs */            $_cache_attrs[] = array();            return $_cache_attrs[count($_cache_attrs)-1];        }    }    /**     * wrapper for include() retaining $this     * @return mixed     */    function _include($filename, $once=false, $params=null)    {        if ($once) {            return include_once($filename);        } else {            return include($filename);        }    }    /**     * wrapper for eval() retaining $this     * @return mixed     */    function _eval($code, $params=null)    {        return eval($code);    }    /**#@-*/}/* vim: set expandtab: */?>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合精品国产一区二区三区 | 欧洲国产伦久久久久久久| 在线观看日韩av先锋影音电影院| 欧美三级电影网| 精品国免费一区二区三区| 亚洲国产激情av| 亚洲一区成人在线| 国模无码大尺度一区二区三区| 99久久99久久精品免费观看 | 狠狠v欧美v日韩v亚洲ⅴ| 成人黄色免费短视频| 欧美日韩国产美| 欧美国产在线观看| 日韩 欧美一区二区三区| 成人黄色av电影| 日韩视频在线一区二区| 成人免费在线播放视频| 青青草原综合久久大伊人精品| 国产成人免费视频网站| 欧美亚洲综合网| 国产人伦精品一区二区| 香蕉乱码成人久久天堂爱免费| 国产自产2019最新不卡| 欧美性生活影院| 欧美激情一区二区三区四区 | 精品电影一区二区| 一区二区三区中文字幕电影| 久久91精品久久久久久秒播| 色网站国产精品| 亚洲一区二区视频| 国产高清精品久久久久| 欧美一二三四区在线| 亚洲主播在线观看| 成人高清在线视频| 欧美精品123区| 亚洲精品一卡二卡| 成人精品一区二区三区四区| 日韩一级免费观看| 亚洲成国产人片在线观看| 成人精品国产福利| 26uuu久久天堂性欧美| 日韩激情视频网站| 在线观看日韩精品| 亚洲图片欧美激情| 国产馆精品极品| 2021国产精品久久精品| 日日摸夜夜添夜夜添国产精品| 色婷婷久久综合| 国产精品成人一区二区三区夜夜夜| 久久国产欧美日韩精品| 欧美精品丝袜中出| 亚洲一区二区三区三| 99国产精品久| 国产精品伦理一区二区| 国产福利精品导航| 久久综合九色综合97_久久久| 免费成人在线视频观看| 91精品在线观看入口| 首页欧美精品中文字幕| 欧美体内she精视频| 亚洲精品高清在线| 色欧美片视频在线观看| 国产精品不卡在线| 成人av在线电影| 中文字幕在线一区| 成人18视频日本| 国产精品看片你懂得| 成人av一区二区三区| 国产精品白丝在线| 成人app在线观看| 中文字幕亚洲视频| 色香蕉成人二区免费| 一区二区在线观看免费视频播放| 99精品视频在线观看免费| 亚洲丝袜精品丝袜在线| 91九色02白丝porn| 亚洲图片欧美一区| 欧美绝品在线观看成人午夜影视| 午夜精品123| 日韩免费视频一区| 国产一区二区伦理| 国产日韩欧美a| 国产v日产∨综合v精品视频| 国产精品久久久久婷婷| 91毛片在线观看| 亚洲高清一区二区三区| 欧美高清一级片在线| 麻豆精品久久精品色综合| 日韩精品资源二区在线| 国产成人亚洲综合a∨猫咪| 国产精品日韩精品欧美在线| 94-欧美-setu| 性感美女久久精品| 日韩精品中文字幕一区二区三区 | www国产亚洲精品久久麻豆| 国产精品99久| 亚洲人123区| 欧美三级电影网站| 韩日欧美一区二区三区| 中文字幕一区二区三区不卡在线| 色婷婷精品大视频在线蜜桃视频| 首页国产欧美日韩丝袜| 久久夜色精品国产欧美乱极品| 成人av在线网站| 亚洲成人免费视频| 久久在线观看免费| 色婷婷久久久久swag精品| 日本亚洲天堂网| 国产精品网站在线播放| 欧美日韩国产在线播放网站| 激情综合色丁香一区二区| 国产精品麻豆欧美日韩ww| 欧美日韩在线亚洲一区蜜芽| 国产真实乱偷精品视频免| 亚洲欧美日韩国产综合| 日韩女优制服丝袜电影| av中文字幕亚洲| 人禽交欧美网站| 中文字幕亚洲电影| 日韩美女一区二区三区四区| 成+人+亚洲+综合天堂| 日韩一区精品视频| 国产精品国产三级国产aⅴ原创| 6080国产精品一区二区| 成人福利视频网站| 青青草精品视频| 亚洲精品综合在线| 久久日一线二线三线suv| 欧美日韩一区中文字幕| 成人免费毛片app| 午夜精品福利一区二区蜜股av | 91久久精品一区二区三| 韩国精品久久久| 一区二区三区在线视频免费观看 | 国v精品久久久网| 免费在线观看日韩欧美| 亚洲伦理在线精品| 久久久久久97三级| 欧美一区二区三区色| 91激情在线视频| 国产suv精品一区二区883| 日韩av一区二| 伊人色综合久久天天| 中文字幕巨乱亚洲| 2020国产成人综合网| 欧美一区二区三区的| 欧美性做爰猛烈叫床潮| 99视频有精品| 福利电影一区二区三区| 久久 天天综合| 日本aⅴ免费视频一区二区三区| 日韩毛片在线免费观看| 国产日韩亚洲欧美综合| 精品久久国产老人久久综合| 欧美日韩精品三区| 一本色道久久综合亚洲精品按摩| 高清不卡一区二区| 国产精品一区在线观看你懂的| 日韩电影在线看| 亚洲一区在线观看网站| 最近日韩中文字幕| 国产精品久久久久影视| 欧美经典一区二区| 久久久久久久久久美女| 日韩欧美成人一区二区| 欧美一区永久视频免费观看| 欧美日韩免费电影| 欧美日韩中字一区| 欧美色倩网站大全免费| 欧美性色aⅴ视频一区日韩精品| 色先锋资源久久综合| 日本国产一区二区| 色久优优欧美色久优优| 91网站最新地址| 91麻豆福利精品推荐| 99v久久综合狠狠综合久久| 不卡在线观看av| 97se亚洲国产综合自在线观| 91麻豆蜜桃一区二区三区| 99精品在线观看视频| 91麻豆国产香蕉久久精品| 一本久道久久综合中文字幕| 91看片淫黄大片一级| 色先锋久久av资源部| 在线观看成人小视频| 欧美日本一区二区在线观看| 欧美片网站yy| 欧美一级一区二区| 欧美大片日本大片免费观看| 精品免费99久久| 久久久久久久久久久电影| 国产午夜亚洲精品午夜鲁丝片| 国产欧美一区二区精品久导航| 欧美高清在线一区| ●精品国产综合乱码久久久久| 亚洲男人的天堂av| 亚洲福利国产精品| 麻豆中文一区二区| 国产ts人妖一区二区| 91视频www|