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

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

?? smarty.class.php

?? This is the script which used on 10minutemail.com for temporary email.
?? PHP
?? 第 1 頁 / 共 5 頁
字號:
<?php

/**
 * Project:     Smarty: the PHP compiling template engine
 * File:        Smarty.class.php
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * For questions, help, comments, discussion, etc., please join the
 * Smarty mailing list. Send a blank e-mail to
 * smarty-general-subscribe@lists.php.net
 *
 * @link http://smarty.php.net/
 * @copyright 2001-2005 New Digital Group, Inc.
 * @author Monte Ohrt <monte at ohrt dot com>
 * @author Andrei Zmievski <andrei@php.net>
 * @package Smarty
 * @version 2.6.13
 */

/* $Id: Smarty.class.php,v 1.524 2006/01/18 19:02:52 mohrt Exp $ */

/**
 * DIR_SEP isn't used anymore, but third party apps might
 */
if(!defined('DIR_SEP')) {
    define('DIR_SEP', DIRECTORY_SEPARATOR);
}

/**
 * set SMARTY_DIR to absolute path to Smarty library files.
 * if not defined, include_path will be used. Sets SMARTY_DIR only if user
 * application has not already defined it.
 */

if (!defined('SMARTY_DIR')) {
    define('SMARTY_DIR', dirname(__FILE__) . DIRECTORY_SEPARATOR);
}

if (!defined('SMARTY_CORE_DIR')) {
    define('SMARTY_CORE_DIR', SMARTY_DIR . 'internals' . DIRECTORY_SEPARATOR);
}

define('SMARTY_PHP_PASSTHRU',   0);
define('SMARTY_PHP_QUOTE',      1);
define('SMARTY_PHP_REMOVE',     2);
define('SMARTY_PHP_ALLOW',      3);

/**
 * @package Smarty
 */
class Smarty
{
    /**#@+
     * Smarty Configuration Section
     */

    /**
     * The name of the directory where templates are located.
     *
     * @var string
     */
    var $template_dir    =  'templates';

    /**
     * The directory where compiled templates are located.
     *
     * @var string
     */
    var $compile_dir     =  'templates_c';

    /**
     * The directory where config files are located.
     *
     * @var string
     */
    var $config_dir      =  'configs';

    /**
     * An array of directories searched for plugins.
     *
     * @var array
     */
    var $plugins_dir     =  array('plugins');

    /**
     * If debugging is enabled, a debug console window will display
     * when the page loads (make sure your browser allows unrequested
     * popup windows)
     *
     * @var boolean
     */
    var $debugging       =  false;

    /**
     * When set, smarty does uses this value as error_reporting-level.
     *
     * @var boolean
     */
    var $error_reporting  =  null;

    /**
     * This is the path to the debug console template. If not set,
     * the default one will be used.
     *
     * @var string
     */
    var $debug_tpl       =  '';

    /**
     * This determines if debugging is enable-able from the browser.
     * <ul>
     *  <li>NONE => no debugging control allowed</li>
     *  <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
     * </ul>
     * @link http://www.foo.dom/index.php?SMARTY_DEBUG
     * @var string
     */
    var $debugging_ctrl  =  'NONE';

    /**
     * This tells Smarty whether to check for recompiling or not. Recompiling
     * does not need to happen unless a template or config file is changed.
     * Typically you enable this during development, and disable for
     * production.
     *
     * @var boolean
     */
    var $compile_check   =  true;

    /**
     * This forces templates to compile every time. Useful for development
     * or debugging.
     *
     * @var boolean
     */
    var $force_compile   =  false;

    /**
     * This enables template caching.
     * <ul>
     *  <li>0 = no caching</li>
     *  <li>1 = use class cache_lifetime value</li>
     *  <li>2 = use cache_lifetime in cache file</li>
     * </ul>
     * @var integer
     */
    var $caching         =  0;

    /**
     * The name of the directory for cache files.
     *
     * @var string
     */
    var $cache_dir       =  'cache';

    /**
     * This is the number of seconds cached content will persist.
     * <ul>
     *  <li>0 = always regenerate cache</li>
     *  <li>-1 = never expires</li>
     * </ul>
     *
     * @var integer
     */
    var $cache_lifetime  =  3600;

    /**
     * Only used when $caching is enabled. If true, then If-Modified-Since headers
     * are respected with cached content, and appropriate HTTP headers are sent.
     * This way repeated hits to a cached page do not send the entire page to the
     * client every time.
     *
     * @var boolean
     */
    var $cache_modified_check = false;

    /**
     * This determines how Smarty handles "<?php ... ?>" tags in templates.
     * possible values:
     * <ul>
     *  <li>SMARTY_PHP_PASSTHRU -> print tags as plain text</li>
     *  <li>SMARTY_PHP_QUOTE    -> escape tags as entities</li>
     *  <li>SMARTY_PHP_REMOVE   -> remove php tags</li>
     *  <li>SMARTY_PHP_ALLOW    -> execute php tags</li>
     * </ul>
     *
     * @var integer
     */
    var $php_handling    =  SMARTY_PHP_PASSTHRU;

    /**
     * This enables template security. When enabled, many things are restricted
     * in the templates that normally would go unchecked. This is useful when
     * untrusted parties are editing templates and you want a reasonable level
     * of security. (no direct execution of PHP in templates for example)
     *
     * @var boolean
     */
    var $security       =   false;

    /**
     * This is the list of template directories that are considered secure. This
     * is used only if {@link $security} is enabled. One directory per array
     * element.  {@link $template_dir} is in this list implicitly.
     *
     * @var array
     */
    var $secure_dir     =   array();

    /**
     * These are the security settings for Smarty. They are used only when
     * {@link $security} is enabled.
     *
     * @var array
     */
    var $security_settings  = array(
                                    'PHP_HANDLING'    => false,
                                    'IF_FUNCS'        => array('array', 'list',
                                                               'isset', 'empty',
                                                               'count', 'sizeof',
                                                               'in_array', 'is_array',
                                                               'true', 'false', 'null'),
                                    'INCLUDE_ANY'     => false,
                                    'PHP_TAGS'        => false,
                                    'MODIFIER_FUNCS'  => array('count'),
                                    'ALLOW_CONSTANTS'  => false
                                   );

    /**
     * This is an array of directories where trusted php scripts reside.
     * {@link $security} is disabled during their inclusion/execution.
     *
     * @var array
     */
    var $trusted_dir        = array();

    /**
     * The left delimiter used for the template tags.
     *
     * @var string
     */
    var $left_delimiter  =  '{';

    /**
     * The right delimiter used for the template tags.
     *
     * @var string
     */
    var $right_delimiter =  '}';

    /**
     * The order in which request variables are registered, similar to
     * variables_order in php.ini E = Environment, G = GET, P = POST,
     * C = Cookies, S = Server
     *
     * @var string
     */
    var $request_vars_order    = 'EGPCS';

    /**
     * Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false)
     * are uses as request-vars or $_*[]-vars. note: if
     * request_use_auto_globals is true, then $request_vars_order has
     * no effect, but the php-ini-value "gpc_order"
     *
     * @var boolean
     */
    var $request_use_auto_globals      = true;

    /**
     * Set this if you want different sets of compiled files for the same
     * templates. This is useful for things like different languages.
     * Instead of creating separate sets of templates per language, you
     * set different compile_ids like 'en' and 'de'.
     *
     * @var string
     */
    var $compile_id            = null;

    /**
     * This tells Smarty whether or not to use sub dirs in the cache/ and
     * templates_c/ directories. sub directories better organized, but
     * may not work well with PHP safe mode enabled.
     *
     * @var boolean
     *
     */
    var $use_sub_dirs          = false;

    /**
     * This is a list of the modifiers to apply to all template variables.
     * Put each modifier in a separate array element in the order you want
     * them applied. example: <code>array('escape:"htmlall"');</code>
     *
     * @var array
     */
    var $default_modifiers        = array();

    /**
     * This is the resource type to be used when not specified
     * at the beginning of the resource path. examples:
     * $smarty->display('file:index.tpl');
     * $smarty->display('db:index.tpl');
     * $smarty->display('index.tpl'); // will use default resource type
     * {include file="file:index.tpl"}
     * {include file="db:index.tpl"}
     * {include file="index.tpl"} {* will use default resource type *}
     *
     * @var array
     */
    var $default_resource_type    = 'file';

    /**
     * The function used for cache file handling. If not set, built-in caching is used.
     *
     * @var null|string function name
     */
    var $cache_handler_func   = null;

    /**
     * This indicates which filters are automatically loaded into Smarty.
     *
     * @var array array of filter names
     */
    var $autoload_filters = array();

    /**#@+
     * @var boolean
     */
    /**
     * This tells if config file vars of the same name overwrite each other or not.
     * if disabled, same name variables are accumulated in an array.
     */
    var $config_overwrite = true;

    /**
     * This tells whether or not to automatically booleanize config file variables.
     * If enabled, then the strings "on", "true", and "yes" are treated as boolean
     * true, and "off", "false" and "no" are treated as boolean false.
     */
    var $config_booleanize = true;

    /**
     * This tells whether hidden sections [.foobar] are readable from the
     * tempalates or not. Normally you would never allow this since that is
     * the point behind hidden sections: the application can access them, but
     * the templates cannot.
     */
    var $config_read_hidden = false;

    /**
     * This tells whether or not automatically fix newlines in config files.
     * It basically converts \r (mac) or \r\n (dos) to \n
     */
    var $config_fix_newlines = true;
    /**#@-*/

    /**
     * If a template cannot be found, this PHP function will be executed.
     * Useful for creating templates on-the-fly or other special action.
     *
     * @var string function name
     */
    var $default_template_handler_func = '';

    /**
     * The file that contains the compiler class. This can a full
     * pathname, or relative to the php_include path.
     *
     * @var string
     */
    var $compiler_file        =    'Smarty_Compiler.class.php';

    /**
     * The class used for compiling templates.
     *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品影视在线| 久久综合给合久久狠狠狠97色69| 日韩va欧美va亚洲va久久| 国产精品免费免费| 国产调教视频一区| 欧美大尺度电影在线| 欧美精品视频www在线观看| 色综合久久久久久久| 99久久久久久| av网站免费线看精品| 激情综合网天天干| 精品一区二区三区免费视频| 蜜桃视频免费观看一区| 免费高清视频精品| 精品一区二区久久| 国产高清不卡一区二区| 国产精品99久久久久久似苏梦涵| 久久99精品久久久| 国产成a人亚洲精| 91在线播放网址| 91久久精品日日躁夜夜躁欧美| 91福利精品第一导航| 欧美日韩激情一区| 欧美va日韩va| 国产精品久久久久久久第一福利| 国产精品动漫网站| 一区二区三区.www| 丝袜a∨在线一区二区三区不卡| 麻豆精品久久久| 成人精品国产福利| 欧美视频在线播放| 337p粉嫩大胆色噜噜噜噜亚洲| 国产日韩v精品一区二区| 最新热久久免费视频| 日本在线播放一区二区三区| 国产精品一区二区在线播放| 色综合咪咪久久| 日韩免费性生活视频播放| 久久综合丝袜日本网| 亚洲欧美日韩国产综合在线| 日日摸夜夜添夜夜添亚洲女人| 久久99久久精品| 一本久久综合亚洲鲁鲁五月天| 日韩免费观看高清完整版| 国产精品伦一区| 美国毛片一区二区| 色综合网站在线| 精品国产青草久久久久福利| 一区在线观看免费| 国产一区三区三区| 欧美性xxxxx极品少妇| 日本一区二区三区高清不卡| 亚洲永久精品国产| 高清视频一区二区| 日韩一区二区在线观看视频| 自拍偷自拍亚洲精品播放| 蜜臀av国产精品久久久久| 色悠悠久久综合| 国产精品伦一区二区三级视频| 日韩高清国产一区在线| 91论坛在线播放| 亚洲国产精品成人综合色在线婷婷| 视频一区二区三区入口| 91免费国产视频网站| 国产无人区一区二区三区| 三级不卡在线观看| 欧美日韩亚洲综合在线| 日韩美女久久久| www.成人在线| 中文字幕欧美激情| 国产精品一区二区在线观看网站| 欧美一区二区视频在线观看2022 | 久久精品国产77777蜜臀| 色美美综合视频| 亚洲欧洲色图综合| 成人一道本在线| 国产女同性恋一区二区| 国产精品一区二区91| 精品久久五月天| 久久国产夜色精品鲁鲁99| 欧美丰满少妇xxxxx高潮对白| 亚洲国产日韩在线一区模特 | 91久久人澡人人添人人爽欧美| 国产欧美精品区一区二区三区| 久草在线在线精品观看| 精品国产123| 国产一区在线观看麻豆| 国产亚洲视频系列| 国产成人综合在线| 国产精品久久久久三级| 9l国产精品久久久久麻豆| 综合欧美亚洲日本| 在线观看网站黄不卡| 亚洲国产精品一区二区www在线| 精品视频999| 男人的天堂久久精品| 欧美mv和日韩mv国产网站| 国产精品一区在线| 国产精品全国免费观看高清| 99久久精品国产一区| 亚洲综合丁香婷婷六月香| 欧美久久久久久蜜桃| 蜜桃精品在线观看| 欧美激情一区二区三区在线| 99久免费精品视频在线观看| 亚洲综合激情另类小说区| 这里只有精品视频在线观看| 国产在线精品一区二区不卡了| 国产蜜臀av在线一区二区三区| av电影天堂一区二区在线观看| 亚洲最色的网站| 日韩午夜激情电影| 成人av午夜电影| 亚洲成人在线网站| 久久亚洲综合色| 91论坛在线播放| 极品少妇xxxx精品少妇| 一区二区视频免费在线观看| 日韩免费看的电影| 91久久一区二区| 韩国欧美国产1区| 一区二区三区在线影院| 精品免费日韩av| 日本高清不卡aⅴ免费网站| 精品综合免费视频观看| 亚洲欧美韩国综合色| 精品国产成人系列| 欧美私人免费视频| 成人a级免费电影| 老司机免费视频一区二区| 一区二区三区欧美视频| 久久女同精品一区二区| 欧美精品xxxxbbbb| 国产suv精品一区二区6| 日韩精品成人一区二区在线| 国产精品久久三区| 久久影音资源网| 欧美日韩国产在线播放网站| av在线这里只有精品| 国产麻豆9l精品三级站| 视频一区视频二区中文| ㊣最新国产の精品bt伙计久久| 久久你懂得1024| 欧美一区二区三区精品| 欧美日韩视频在线第一区| 99精品一区二区| 成人精品视频一区二区三区| 国内不卡的二区三区中文字幕| 图片区日韩欧美亚洲| 一个色综合网站| 亚洲激情图片qvod| 亚洲美女屁股眼交| 亚洲三级在线观看| 亚洲欧洲av在线| 亚洲视频精选在线| 国产精品免费久久| 国产精品入口麻豆九色| 中文字幕va一区二区三区| 久久九九99视频| 国产日韩欧美a| 国产午夜精品一区二区| 国产日韩精品一区二区三区 | 白白色 亚洲乱淫| 成人伦理片在线| 粉嫩一区二区三区在线看| 丁香婷婷综合网| 懂色av一区二区在线播放| 成人h动漫精品一区二区| 成人av第一页| 91九色02白丝porn| 欧美唯美清纯偷拍| 欧美一级艳片视频免费观看| 欧美一级午夜免费电影| www久久精品| 国产欧美视频一区二区三区| 国产精品女主播在线观看| 国产精品久久久99| 亚洲一区二区三区中文字幕在线| 亚洲成av人片在www色猫咪| 天天做天天摸天天爽国产一区| 免费在线观看日韩欧美| 国产麻豆精品95视频| 91麻豆成人久久精品二区三区| 欧美无砖专区一中文字| 精品国产免费一区二区三区四区 | 亚洲黄色尤物视频| 婷婷综合在线观看| 国产精品18久久久久久久网站| 国产精品白丝av| 一本大道av伊人久久综合| 欧美精品一二三| 日本一区二区免费在线| 亚洲国产成人av网| 国产精品一区二区在线观看网站| 99久久免费精品高清特色大片| 欧美日韩综合一区| 国产亚洲午夜高清国产拍精品 | 欧美性感一类影片在线播放| 欧美一区二区三区小说| 欧美国产禁国产网站cc|