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

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

?? smarty.class.php

?? asterisk用 的voip記費軟件
?? 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.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产色91在线| 日本一区二区三区视频视频| 色综合婷婷久久| 99国产精品一区| 日本乱码高清不卡字幕| 欧美性淫爽ww久久久久无| 欧美日韩一级大片网址| 91精品在线免费| 久久亚洲捆绑美女| 国产精品美女久久久久久| 亚洲欧美乱综合| 亚洲一区国产视频| 秋霞午夜av一区二区三区| 奇米777欧美一区二区| 麻豆91免费看| 国产精品亚洲成人| 91片在线免费观看| 欧美精品日日鲁夜夜添| 2023国产精品视频| 亚洲日穴在线视频| 午夜国产精品影院在线观看| 久久丁香综合五月国产三级网站| 国产精品亚洲成人| 91精彩视频在线| 欧美mv和日韩mv国产网站| 国产精品区一区二区三| 亚洲国产一二三| 黄色小说综合网站| 99re热这里只有精品免费视频| 欧美日韩一区高清| 国产欧美综合在线观看第十页| 亚洲美女屁股眼交3| 麻豆freexxxx性91精品| 91在线视频免费91| 欧美tickling网站挠脚心| 日韩美女视频19| 精品午夜久久福利影院| 91蜜桃视频在线| 国产亚洲成av人在线观看导航| 亚洲精品视频在线观看免费| 国产在线看一区| 色8久久精品久久久久久蜜 | 91免费观看国产| 欧美大片顶级少妇| 蜜桃久久久久久| 欧美激情综合五月色丁香小说| 成人激情综合网站| 欧美一区在线视频| 亚洲另类中文字| 国产在线不卡一卡二卡三卡四卡| 在线中文字幕不卡| 国产精品久久久久一区二区三区| 日韩电影一区二区三区| 色婷婷香蕉在线一区二区| 久久一区二区视频| 蜜桃av噜噜一区| 欧美日本在线观看| 亚洲一区中文日韩| 91久久精品一区二区二区| 欧美国产精品中文字幕| 国产乱理伦片在线观看夜一区| 欧美日韩国产首页| 亚洲国产精品自拍| 色嗨嗨av一区二区三区| 中文字幕制服丝袜一区二区三区| 国产一区二三区好的| 精品久久久久久久久久久院品网| 三级久久三级久久久| 欧美日韩一区三区四区| 亚洲国产综合在线| 欧美日韩亚洲另类| 视频一区在线播放| 日韩一级完整毛片| 美腿丝袜亚洲综合| 亚洲精品一区二区三区在线观看 | 不卡的电影网站| 国产精品你懂的在线欣赏| 高清国产一区二区三区| 国产婷婷色一区二区三区在线| 国产剧情一区二区| 中文字幕av在线一区二区三区| 国产91精品一区二区麻豆网站| 国产日韩精品一区二区三区| jizzjizzjizz欧美| 一二三区精品视频| 91精品中文字幕一区二区三区 | 欧美不卡一区二区三区四区| 久久精品久久精品| 久久久久久免费网| 91亚洲精品久久久蜜桃网站| 亚洲自拍偷拍欧美| 91精品国产麻豆| 国产成人免费av在线| 亚洲免费成人av| 在线电影欧美成精品| 国产一区二区女| 亚洲欧美二区三区| 日韩欧美综合一区| kk眼镜猥琐国模调教系列一区二区| 亚洲人成精品久久久久| 3d成人动漫网站| 国产高清亚洲一区| 一区二区三区美女| xfplay精品久久| 欧美制服丝袜第一页| 久久99久久久久久久久久久| 国产精品久久久久精k8| 在线播放一区二区三区| 粉嫩一区二区三区性色av| 亚洲国产精品久久一线不卡| 久久久亚洲欧洲日产国码αv| 色一情一乱一乱一91av| 久久99国产精品免费| 亚洲欧洲成人自拍| 精品国精品国产| 欧美日韩激情在线| 成人ar影院免费观看视频| 蜜臀va亚洲va欧美va天堂| 亚洲蜜桃精久久久久久久| 久久先锋资源网| 欧美丰满少妇xxxxx高潮对白| 99精品视频中文字幕| 美女免费视频一区二区| 亚洲国产视频一区二区| 国产精品久久影院| 久久亚洲精品国产精品紫薇| 欧美精品久久久久久久多人混战| 成人激情免费视频| 极品美女销魂一区二区三区| 午夜精品123| 一个色综合av| 亚洲另类一区二区| 日韩美女精品在线| 国产精品福利一区| 国产三级三级三级精品8ⅰ区| 制服丝袜亚洲精品中文字幕| 色婷婷久久一区二区三区麻豆| 国产一区二区精品在线观看| 蜜臀av一区二区在线观看| 亚洲动漫第一页| 亚洲综合在线第一页| 亚洲欧美日韩中文字幕一区二区三区 | 日本 国产 欧美色综合| 午夜精品一区二区三区电影天堂| 中文字幕一区二区不卡| 日本一区二区综合亚洲| 国产精品午夜在线| 国产精品免费视频观看| 国产精品久久久久国产精品日日| 欧美国产日本韩| 日本一区二区成人| 亚洲欧洲国产专区| 亚洲精品国产无套在线观| 亚洲欧美国产高清| 亚洲午夜私人影院| 日韩专区在线视频| 美女爽到高潮91| 极品瑜伽女神91| 国产精品99久久久久久久vr| 夫妻av一区二区| 本田岬高潮一区二区三区| 一本大道av伊人久久综合| 欧美性猛交一区二区三区精品| 欧美亚洲国产bt| 日韩精品一区二区三区四区 | 在线播放亚洲一区| 欧美变态tickling挠脚心| 久久久亚洲综合| 亚洲柠檬福利资源导航| 亚洲成人tv网| 国产精品一卡二卡在线观看| av一二三不卡影片| 欧美三区在线观看| 欧美精品一区二区三区四区| 国产精品久久国产精麻豆99网站| 亚洲女同一区二区| 天堂一区二区在线| 国产91丝袜在线观看| 在线中文字幕一区二区| 欧美一级国产精品| 国产精品久久99| 日韩电影在线观看电影| 成人性视频免费网站| 欧美丝袜丝交足nylons| 精品久久久网站| 一区二区三区在线观看国产| 久久69国产一区二区蜜臀| 成人av网站免费| 欧美一区二区三区视频在线| 国产精品系列在线| 奇米影视一区二区三区小说| 成人av动漫网站| 精品日韩av一区二区| 一区二区免费看| 国模套图日韩精品一区二区| 欧美在线观看视频在线| 中文子幕无线码一区tr| 麻豆精品国产传媒mv男同| 91蝌蚪porny成人天涯| 欧美精品一区二区三区蜜桃|