<?php
/**
* Smarty Internal Plugin Templateparser
*
* This is the template parser.
* It is generated from the internal.templateparser.y file
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
class TP_yyToken implements ArrayAccess
{
public $string = '';
public $metadata = array();
function __construct($s, $m = array())
{
if ($s instanceof TP_yyToken) {
$this->string = $s->string;
$this->metadata = $s->metadata;
} else {
$this->string = (string) $s;
if ($m instanceof TP_yyToken) {
$this->metadata = $m->metadata;
} elseif (is_array($m)) {
$this->metadata = $m;
}
}
}
function __toString()
{
return $this->_string;
}
function offsetExists($offset)
{
return isset($this->metadata[$offset]);
}
function offsetGet($offset)
{
return $this->metadata[$offset];
}
function offsetSet($offset, $value)
{
if ($offset === null) {
if (isset($value[0])) {
$x = ($value instanceof TP_yyToken) ?
$value->metadata : $value;
$this->metadata = array_merge($this->metadata, $x);
return;
}
$offset = count($this->metadata);
}
if ($value === null) {
return;
}
if ($value instanceof TP_yyToken) {
if ($value->metadata) {
$this->metadata[$offset] = $value->metadata;
}
} elseif ($value) {
$this->metadata[$offset] = $value;
}
}
function offsetUnset($offset)
{
unset($this->metadata[$offset]);
}
}
class TP_yyStackEntry
{
public $stateno; /* The state-number */
public $major; /* The major token value. This is the code
** number for the token at this stack level */
public $minor; /* The user-supplied minor token value. This
** is the value of the token */
};
#line 12 "smarty_internal_templateparser.y"
class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php"
{
#line 14 "smarty_internal_templateparser.y"
const Err1 = "Security error: Call to private object member not allowed";
const Err2 = "Security error: Call to dynamic object member not allowed";
const Err3 = "PHP in template not allowed. Use SmartyBC to enable it";
// states whether the parse was successful or not
public $successful = true;
public $retvalue = 0;
private $lex;
private $internalError = false;
function __construct($lex, $compiler) {
$this->lex = $lex;
$this->compiler = $compiler;
$this->smarty = $this->compiler->smarty;
$this->template = $this->compiler->template;
$this->compiler->has_variable_string = false;
$this->compiler->prefix_code = array();
$this->prefix_number = 0;
$this->block_nesting_level = 0;
if ($this->security = isset($this->smarty->security_policy)) {
$this->php_handling = $this->smarty->security_policy->php_handling;
} else {
$this->php_handling = $this->smarty->php_handling;
}
$this->is_xml = false;
$this->asp_tags = (ini_get('asp_tags') != '0');
$this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this);
}
public static function escape_start_tag($tag_text) {
$tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag
return $tag;
}
public static function escape_end_tag($tag_text) {
return '?<?php ?>>';
}
public function compileVariable($variable) {
if (strpos($variable,'(') == 0) {
// not a variable variable
$var = trim($variable,'\'');
$this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable($var, null, true, false)->nocache;
$this->template->properties['variables'][$var] = $this->compiler->tag_nocache|$this->compiler->nocache;
}
// return '(isset($_smarty_tpl->tpl_vars['. $variable .'])?$_smarty_tpl->tpl_vars['. $variable .']->value:$_smarty_tpl->getVariable('. $variable .')->value)';
return '$_smarty_tpl->tpl_vars['. $variable .']->value';
}
#line 131 "smarty_internal_templateparser.php"
const TP_VERT = 1;
const TP_COLON = 2;
const TP_COMMENT = 3;
const TP_PHPSTARTTAG = 4;
const TP_PHPENDTAG = 5;
const TP_ASPSTARTTAG = 6;
const TP_ASPENDTAG = 7;
const TP_FAKEPHPSTARTTAG = 8;
const TP_XMLTAG = 9;
const TP_OTHER = 10;
const TP_LINEBREAK = 11;
const TP_LITERALSTART = 12;
const TP_LITERALEND = 13;
const TP_LITERAL = 14;
const TP_LDEL = 15;
const TP_RDEL = 16;
const TP_DOLLAR = 17;
const TP_ID = 18;
const TP_EQUAL = 19;
const TP_PTR = 20;
const TP_LDELIF = 21;
const TP_LDELFOR = 22;
const TP_SEMICOLON = 23;
const TP_INCDEC = 24;
const TP_TO = 25;
const TP_STEP = 26;
const TP_LDELFOREACH = 27;
const TP_SPACE = 28;
const TP_AS = 29;
const TP_APTR = 30;
const TP_LDELSETFILTER = 31;
const TP_SMARTYBLOCKCHILD = 32;
const TP_LDELSLASH = 33;
const TP_INTEGER = 34;
const TP_COMMA = 35;
const TP_OPENP = 36;
const TP_CLOSEP = 37;
const TP_MATH = 38;
const TP_UNIMATH = 39;
const TP_ANDSYM = 40;
const TP_ISIN = 41;
const TP_ISDIVBY = 42;
const TP_ISNOTDIVBY = 43;
const TP_ISEVEN = 44;
const TP_ISNOTEVEN = 45;
const TP_ISEVENBY = 46;
const TP_ISNOTEVENBY = 47;
const TP_ISODD = 48;
const TP_ISNOTODD = 49;
const TP_ISODDBY = 50;
const TP_ISNOTODDBY = 51;
const TP_INSTANCEOF = 52;
const TP_QMARK = 53;
const TP_NOT = 54;
const TP_TYPECAST = 55;
const TP_HEX = 56;
const TP_DOT = 57;
const TP_SINGLEQUOTESTRING = 58;
const TP_DOUBLECOLON = 59;
const TP_AT = 60;
const TP_HATCH = 61;
const TP_OPENB = 62;
const TP_CLOSEB = 63;
const TP_EQUALS = 64;
const TP_NOTEQUALS = 65;
const TP_GREATERTHAN = 66;
const TP_LESSTHAN
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
ICP备案查询系统是一款基于PHP+MYSQL开发制作的网站备案查询系统源码,本系统致力于实时对接工信部ICP备案查询数据,快速高效. 更新说明: 修复重置更新报错BUG 安装说明 放到网站网站根目录 访问http://你的网址/install.php 然后配置网站服务器伪静态,警告必须配置伪静态不然无法访问 演示站点:https://icp.mgtv.xyzICP备案查询系统是一款基于PHP+MYSQL开发制作的网站备案查询系统源码,本系统致力于实时对接工信部ICP备案查询数据,快速高效. 更新说明: 修复重置更新报错BUG 安装说明 放到网站网站根目录 访问http://你的网址/install.php 然后配置网站服务器伪静态,警告必须配置伪静态不然无法访问 演示站点:https://icp.mgtv.xyz
资源推荐
资源详情
资源评论
收起资源包目录
ICP备案查询系统PHP网站备案查询系统源码 v1.1.rar (1663个子文件)
all-wcprops 3KB
all-wcprops 2KB
all-wcprops 2KB
all-wcprops 2KB
all-wcprops 2KB
all-wcprops 1KB
all-wcprops 1KB
all-wcprops 1KB
all-wcprops 1KB
all-wcprops 830B
all-wcprops 804B
all-wcprops 790B
all-wcprops 740B
all-wcprops 724B
all-wcprops 576B
all-wcprops 563B
all-wcprops 560B
all-wcprops 553B
all-wcprops 470B
all-wcprops 470B
all-wcprops 440B
all-wcprops 430B
all-wcprops 420B
all-wcprops 420B
all-wcprops 410B
all-wcprops 366B
all-wcprops 344B
all-wcprops 331B
all-wcprops 302B
all-wcprops 226B
all-wcprops 222B
all-wcprops 210B
all-wcprops 206B
all-wcprops 206B
all-wcprops 198B
all-wcprops 198B
all-wcprops 192B
all-wcprops 174B
all-wcprops 78B
php_xxtea.c 6KB
xxtea.c 2KB
COPYING 1KB
CREDITS 53B
layout.css 291KB
style.css 284KB
basezb.css 179KB
bootstrap.min.css 129KB
style.default.css 118KB
baseinfo.css 87KB
login.css 86KB
resetPasswdStep1.css 86KB
layui.css 78KB
index.css 74KB
layui.css 73KB
all.css 70KB
6d3ca27ddbc0aa8a03b46888217b0c51.css 55KB
list.css 50KB
ueditor.css 43KB
index.css 39KB
admin.css 37KB
ueditor.min.css 34KB
index.css 34KB
layui.css 31KB
global.css 29KB
homepage.css 25KB
my.css 24KB
video-js.css 22KB
seo-v2.css 21KB
layer.css 19KB
image.css 19KB
all-base.css 18KB
fwindow.css 18KB
comm.css 16KB
newlist.css 16KB
video.css 15KB
attachment.css 15KB
layer.css 14KB
layer.css 14KB
iconfont.css 12KB
default-skin.css 11KB
video-js.min.css 11KB
publish.css 10KB
layui.mobile.css 10KB
jquery.fancybox-1.3.4.css 8KB
admin-style.css 8KB
demo.css 8KB
jscal2.css 8KB
laydate.css 7KB
style.css 7KB
laydate.css 7KB
shCoreDefault.css 7KB
calendar-blue.css 6KB
demo.css 5KB
admin_style.css 5KB
scrawl.css 4KB
collect.css 4KB
cropper.css 3KB
cropper.css 3KB
cropper.css 3KB
dialog.css 3KB
共 1663 条
- 1
- 2
- 3
- 4
- 5
- 6
- 17
资源评论
小正太浩二
- 粉丝: 237
- 资源: 5943
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 修改LATEX.pdf
- IMG_20241125_120800.jpg
- AI助手Copilot辅助Go+Flutter打造全栈式在线教育系统课程17章
- 2024下半年,CISSP官方10道练习题
- JD-Core是一个用JAVA编写的JAVA反编译器 .zip
- 时间复杂度与数据结构:算法效率的双重奏
- QT 简易项目 网络调试器(未实现连接唯一性) QT5.12.3环境 C++实现
- YOLOv3网络架构深度解析:关键特性与代码实现
- ACOUSTICECHO CANCELLATION WITH THE DUAL-SIGNAL TRANSFORMATION LSTM NETWORK
- 深入解析:动态数据结构与静态数据结构的差异
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功