New PHP tests

This commit is contained in:
Uwe Tews
2015-05-23 18:49:46 +02:00
parent cb31ef2df1
commit 66f127cab1
62 changed files with 2038 additions and 249 deletions

View File

@@ -28,162 +28,29 @@ class CompilePhpTest extends PHPUnit_Smarty
$this->cleanDirs();
}
/**
* test <?php...\> tag
* PHP_REMOVE
*/
public function testPHP_REMOVE_php()
{
$this->smarty->setPhpHandling(Smarty::PHP_REMOVE);
$content = $this->smarty->fetch("string:a<?php echo 'hello world'; ?>e");
$this->assertEquals("a echo 'hello world'; e", $content, 'remove <?php ?>');
}
/**
* test <%...%> tag
* PHP_REMOVE
* Test
* @run inSeparateProcess
* @preserveGlobalState disabled
* @dataProvider data
*
*/
public function testPHP_REMOVE_asp()
public function testPHP($phpHandling, $templateFile, $result, $testName)
{
$this->smarty->setPhpHandling(Smarty::PHP_REMOVE);
$content = $this->smarty->fetch("string:a<% echo 'hello world';%>e");
$this->assertEquals("a echo 'hello world';e", $content, 'remove <% %>');
}
/**
* test <script language='php'>...</script> tag
* PHP_REMOVE
*/
public function testPHP_REMOVE_script()
{
$this->smarty->setPhpHandling(Smarty::PHP_REMOVE);
$content = $this->smarty->fetch("string:a<script language='php'> echo 'hello world';</script>e");
$this->assertEquals("a echo 'hello world';e", $content, "remove <script language='php'>");
}
/**
* test <?php...\> tag
* PHP_PASSTHRU
*/
public function testPHP_PASSTHRU_php()
{
$this->smarty->setPhpHandling(Smarty::PHP_PASSTHRU);
$content = $this->smarty->fetch("string:pa<?php echo 'hello world'; ?>pe");
$this->assertEquals("pa<?php echo 'hello world'; ?>pe", $content, 'passthru <?php ?>');
}
/**
* test <%...%> tag
* PHP_PASSTHRU
*/
public function testPHP_PASSTHRU_asp()
{
$this->smarty->setPhpHandling(Smarty::PHP_PASSTHRU);
$content = $this->smarty->fetch("string:pa<% echo 'hello world';%>pe");
$this->assertEquals("pa<% echo 'hello world';%>pe", $content, 'passthru <% %>');
}
/**
* test <script language='php'>...</script> tag
* PHP_PASSTHRU
*/
public function testPHP_PASSTHRU_script()
{
$this->smarty->setPhpHandling(Smarty::PHP_PASSTHRU);
$content = $this->smarty->fetch("string:pa<script language='php'> echo 'hello world';</script>pe");
$this->assertEquals("pa<script language='php'> echo 'hello world';</script>pe", $content, "passthru <script language='php'>");
}
/**
* test <?php...\> tag
* PHP_QUOTE
*/
public function testPHP_QUOTE_php()
{
$this->smarty->setPhpHandling(Smarty::PHP_QUOTE);
$content = $this->smarty->fetch("string:qa<?php echo 'hello world';\necho ' multiline'; ?>qe");
$this->assertEquals("qa&lt;?php echo 'hello world';\necho ' multiline'; ?&gt;qe", $content, 'qoute <?php ?>');
}
/**
* test <%...%> tag
* PHP_QUOTE
*/
public function testPHP_QUOTE_asp()
{
$this->smarty->setPhpHandling(Smarty::PHP_QUOTE);
$content = $this->smarty->fetch("string:qa<% echo 'hello world';%>qe");
$this->assertEquals("qa&lt;% echo 'hello world';%&gt;qe", $content, 'qoute <% %>');
}
/**
* test <script language='php'>...</script> tag
* PHP_QUOTE
*/
public function testPHP_QUOTE_script()
{
$this->smarty->setPhpHandling(Smarty::PHP_QUOTE);
$content = $this->smarty->fetch("string:qa<script language='php'> echo 'hello world';</script>qe");
$this->assertEquals("qa&lt;script language=&#039;php&#039;&gt; echo 'hello world';&lt;/script&gt;qe", $content, "quote <script language='php'>");
}
/**
* test <?php...\> tag
* PHP_ALLOW
*/
public function testPHP_ALLOW_php()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <?php echo 'hello world'; ?> ae");
}
/**
* test <%...%> tag
* PHP_ALLOW
*/
public function testPHP_ALLOW_asp()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <% echo 'hello world';\n echo ' multiline';%> ae");
if (ini_get('asp_tags')) {
$this->assertEquals('aa hello world multiline ae', $content, 'allow <% %>');
} else {
$this->assertEquals("aa <% echo 'hello world';\n echo ' multiline';%> ae", $content, 'allow asp disabled <% %>');
$result = str_replace("\r", '', $result);
$this->smartyBC->php_handling = $phpHandling;
$this->smartyBC->compile_id = $testName;
$tpl = $this->smartyBC->createTemplate($templateFile);
if ($phpHandling == Smarty::PHP_PASSTHRU || $phpHandling == Smarty::PHP_QUOTE) {
$result = str_replace("\r", '', $tpl->source->content);
}
if ($phpHandling == Smarty::PHP_QUOTE) {
$result = preg_replace_callback('#(<\?(?:php|=)?)|(<%)|(<script\s+language\s*=\s*["\']?\s*php\s*["\']?\s*>)|(\?>)|(%>)|(<\/script>)#i', array($this, 'quote'), $result);
}
$content = $tpl->fetch();
$this->assertEquals($result, $content, $testName);
}
/**
* test <script language='php'>...</script> tag
* PHP_ALLOW
*/
public function testPHP_ALLOW_script()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <script language='php'> echo 'hello world';\n echo ' multiline';</script> ae");
$this->assertEquals('aa hello world multiline ae', $content, "allow <script language='php'>");
}
/**
* test <?php...\> tag
* PHP_ALLOW
*/
public function testPHP_ALLOW_php2()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <?php echo '<?php';\necho ' ?>'; ?> ae");
$this->assertEquals('aa <?php ?> ae', $content);
}
/**
* test <?php...\> tag
* PHP_ALLOW
*/
public function testPHP_ALLOW_php3()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <?php echo '?>'; ?> ae");
$this->assertEquals('aa ?> ae', $content);
}
/**
* test <?php...\> tag
* PHP_ALLOW
*/
public function testPHP_ALLOW_php4()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <?php /* ?> */ echo '?>'; ?> ae");
$this->assertEquals('aa ?> ae', $content);
}
/**
* @expectedException SmartyCompilerException
* @expectedExceptionMessage $smarty->php_handling PHP_ALLOW not allowed. Use SmartyBC to enable it
@@ -195,85 +62,23 @@ public function testPHP_REMOVE_php()
$content = $this->smarty->fetch("string:aa <?php echo 'hallo'; ?> ae");
}
/**
* test <?=...\> shorttag
* default is PASSTHRU
*/
public function testShortTag()
{
$this->smartyBC->assign('foo', 'bar');
$content = $this->smartyBC->fetch('eval:<?=$foo?>');
$this->assertEquals('<?=$foo?>', $content);
}
/**
* test unmatched <?php
*
*/
public function testUnmatched_php()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch('string:aa <?php ee');
$this->assertEquals('aa <?php ee', $content);
}
/**
* test unmatched ?>
*
*/
public function testUnmatched_php_close()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch('string:aa ?> ee');
$this->assertEquals('aa ?> ee', $content);
}
/**
* test unmatched <%
*
*/
public function testUnmatched_asp()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch('string:aa <% ee');
$this->assertEquals('aa <% ee', $content);
}
/**
* test unmatched %>
*
*/
public function testUnmatched_asp_close()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch('string:aa %> ee');
$this->assertEquals('aa %> ee', $content);
}
/**
* test unmatched <script language='php'>
*
*/
public function testUnmatched_script()
{
$this->smartyBC->setPhpHandling(Smarty::PHP_ALLOW);
$content = $this->smartyBC->fetch("string:aa <script language='php'> echo 'hello world'; ae");
$this->assertEquals("aa <script language='php'> echo 'hello world'; ae", $content);
}
/**
* test {php}{/php} tag
* PHP_ALLOW
*/
public function testPHP_Tag()
{
$content = $this->smartyBC->fetch("string:aa {php} echo 'hallo'; {/php} ae");
$this->assertEquals('aa hallo ae', $content);
}
/**
* test {php nocache}{/php} tag
* PHP_ALLOW
*/
public function testPHP_Tag_Nocache()
public function testPHP_Tag_Nocache1()
{
$this->smartyBC->caching = 1;
$content = $this->smartyBC->fetch("string:aa {php nocache} echo 'hallo'; {/php} ae");
$this->assertEquals('aa hallo ae', $content);
$this->smartyBC->assign('foo', 'foo');
$content = $this->smartyBC->fetch('phptag_nocache.tpl');
$this->assertEquals('-->foo<--', $content);
}
public function testPHP_Tag_Nocache2()
{
$this->smartyBC->caching = 1;
$this->smartyBC->assign('foo', 'bar');
$content = $this->smartyBC->fetch('phptag_nocache.tpl');
$this->assertEquals('-->bar<--', $content);
}
/**
* test {php no cache}illegal option
@@ -286,33 +91,66 @@ public function testPHP_REMOVE_php()
$content = $this->smartyBC->fetch("string:aa {php no cache} echo 'hallo'; {/php} ae");
}
/**
* test { php}{/php} tag
* PHP_Tag Literal
*/
public function testPHP_Tag_Literal()
public function data()
{
$content = $this->smartyBC->fetch("string:aa { php} echo 'hallo'; { /php} ae");
$this->assertEquals('aa { php} echo \'hallo\'; { /php} ae', $content);
$shortTag = ini_get('short_open_tag') == 1;
$aspTag = ini_get('asp_tags') == 1;
return array(
/*
* php_handling
* template file
* result
* text
*/
array(Smarty::PHP_REMOVE, 'php.tpl', '--><--', 'PHP_REMOVE, \'php.tpl\''),
array(Smarty::PHP_PASSTHRU, 'php.tpl', '', 'PHP_PASSTHRU, \'php.tpl\''),
array(Smarty::PHP_QUOTE, 'php.tpl', '', 'PHP_QUOTE, \'php.tpl\''),
array(Smarty::PHP_ALLOW, 'php.tpl', '--> hello world <?php ?> <--', 'PHP_ALLOW, \'php.tpl\''),
array(Smarty::PHP_REMOVE, 'php_line_comment.tpl', '--><--', 'PHP_REMOVE, \'php_line_comment.tpl\''),
array(Smarty::PHP_PASSTHRU, 'php_line_comment.tpl', '', 'PHP_PASSTHRU, \'php_line_comment.tpl\''),
array(Smarty::PHP_QUOTE, 'php_line_comment.tpl', '', 'PHP_QUOTE, \'php_line_comment.tpl\''),
array(Smarty::PHP_ALLOW, 'php_line_comment.tpl', '--> hello world <?php ?> <--', 'PHP_ALLOW, \'php_line_comment.tpl\''),
array(Smarty::PHP_REMOVE, 'php_block_comment.tpl', '--><--', 'PHP_REMOVE, \'php_block_comment.tpl\''),
array(Smarty::PHP_PASSTHRU, 'php_block_comment.tpl', '', 'PHP_PASSTHRU, \'php_block_comment.tpl\''),
array(Smarty::PHP_QUOTE, 'php_block_comment.tpl', '', 'PHP_QUOTE, \'php_block_comment.tpl\''),
array(Smarty::PHP_ALLOW, 'php_block_comment.tpl', '--> hello world <?php ?> <--', 'PHP_ALLOW, \'php_block_comment.tpl\''),
array(Smarty::PHP_REMOVE, 'php2.tpl', '--><--', 'PHP_REMOVE, \'php2.tpl\''),
array(Smarty::PHP_PASSTHRU, 'php2.tpl', '', 'PHP_PASSTHRU, \'php2.tpl\''),
array(Smarty::PHP_QUOTE, 'php2.tpl', '', 'PHP_QUOTE, \'php2.tpl\''),
array(Smarty::PHP_ALLOW, 'php2.tpl', $shortTag ? '--> hello world <? ?> <--' : '--><? echo \' hello world \';
echo \'<? \';
echo \'?> \';
?><--', 'PHP_ALLOW, \'php2.tpl\''),
array(Smarty::PHP_REMOVE, 'asp.tpl', '--><--', 'PHP_REMOVE, \'asp.tpl\''),
array(Smarty::PHP_PASSTHRU, 'asp.tpl', '', 'PHP_PASSTHRU, \'asp.tpl\''),
array(Smarty::PHP_QUOTE, 'asp.tpl', '', 'PHP_QUOTE, \'asp.tpl\''),
array(Smarty::PHP_ALLOW, 'asp.tpl', $aspTag ? '-->hello world <% %> <--' : '--><% echo \'hello world \';
echo \'<% \';
echo \'%> \';
%><--', 'PHP_ALLOW, \'asp.tpl\''),
array(Smarty::PHP_REMOVE, 'script.tpl', '--><--', 'PHP_REMOVE, \'script.tpl\''),
array(Smarty::PHP_PASSTHRU, 'script.tpl', '', 'PHP_PASSTHRU, \'script.tpl\''),
array(Smarty::PHP_QUOTE, 'script.tpl', '', 'PHP_QUOTE, \'script.tpl\''),
array(Smarty::PHP_ALLOW, 'script.tpl', '--> hello world <script language=\'php\'> </script> <--', 'PHP_ALLOW, \'script.tpl\''),
array(Smarty::PHP_ALLOW, 'phptag.tpl', '--> hello world {php} {/php} <--', 'PHP_ALLOW, \'phptag.tpl\''),
array(Smarty::PHP_ALLOW, 'phptag_line_comment.tpl', '--> hello world {php} {/php} <--', 'PHP_ALLOW, \'phptag_line_comment.tpl\''),
array(Smarty::PHP_ALLOW, 'phptag_block_comment.tpl', '--> hello world {php} {/php} <--', 'PHP_ALLOW, \'phptag_block_comment.tpl\''),
array(Smarty::PHP_ALLOW, 'phptag_literal.tpl', '-->{ php} echo \' hello world \';
echo \'foo \';
echo \'bar \';
$foo = 3;
{ /php}<--', 'PHP_ALLOW, \'phptag_literal.tpl\''),
);
}
/**
* test unmatched {php} tag
* @expectedException SmartyCompilerException
* @expectedExceptionMessage Missing {/php} closing tag
*
*/
public function testPHP_Tag_unmatch()
/*
* Call back function for $php_handling = PHP_QUOTE
*
*/
private function quote($match)
{
$content = $this->smartyBC->fetch("string:aa {php} echo 'hallo'; ae");
}
/**
* test unmatched {/php} tag
* @expectedException SmartyCompilerException
* @expectedExceptionMessage Missing {php} open tag
*
*/
public function testPHP_TagOpen_unmatch()
{
$content = $this->smartyBC->fetch("string:aa {/php} ae");
return htmlspecialchars($match[0], ENT_QUOTES);
}
}

View File

@@ -0,0 +1,30 @@
<?php
/*%%SmartyHeaderCode:256605560a6a41fea39_24766095%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'258487733f7ac8a0af3ec4397e7d90726fff8d1b' =>
array (
0 => './templates/phptag_nocache.tpl',
1 => 1432394864,
2 => 'file',
),
),
'nocache_hash' => '256605560a6a41fea39_24766095',
'tpl_function' =>
array (
),
'has_nocache_code' => true,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a4244152_55149112',
'cache_lifetime' => 3600,
),true);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a4244152_55149112')) {
function content_5560a6a4244152_55149112 ($_smarty_tpl) {
?>
--><?php echo $_smarty_tpl->getTemplateVars('foo');
?><--<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php
/*%%SmartyHeaderCode:96695560a6a4289380_73148826%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'258487733f7ac8a0af3ec4397e7d90726fff8d1b' =>
array (
0 => './templates/phptag_nocache.tpl',
1 => 1432394864,
2 => 'file',
),
),
'nocache_hash' => '96695560a6a4289380_73148826',
'tpl_function' =>
array (
),
'has_nocache_code' => true,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a42d08d0_31405160',
'cache_lifetime' => 3600,
),true);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a42d08d0_31405160')) {
function content_5560a6a42d08d0_31405160 ($_smarty_tpl) {
?>
--><?php echo $_smarty_tpl->getTemplateVars('foo');
?><--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php
/*%%SmartyHeaderCode:719555593928a81104_54626482%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'334b0d8ca0d4913d0bd1388b65cf1b4b85cddd0a' =>
array (
0 => '334b0d8ca0d4913d0bd1388b65cf1b4b85cddd0a',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '719555593928a81104_54626482',
'tpl_function' =>
array (
),
'has_nocache_code' => true,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928ae7e16_19718700',
'cache_lifetime' => 3600,
),true);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928ae7e16_19718700')) {
function content_55593928ae7e16_19718700 ($_smarty_tpl) {
?>
aa <?php echo 'hallo'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,32 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/asp.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:72225560a6a3e1f4d9_98898845%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'73781372a721db46f11c6408994a188fd91a8b55' =>
array (
0 => './templates/asp.tpl',
1 => 1432339743,
2 => 'file',
),
),
'nocache_hash' => '72225560a6a3e1f4d9_98898845',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3e254b2_72193956',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3e254b2_72193956')) {
function content_5560a6a3e254b2_72193956 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '72225560a6a3e1f4d9_98898845';
?>
--><% echo 'hello world ';
echo '<% ';
echo '%> ';
%><--<?php }
}
?>

View File

@@ -0,0 +1,32 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php2.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:131625560a6a3cd8e63_08956040%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'b1e2d903cd34cc1a067a96358cd41f1ec6f6a646' =>
array (
0 => './templates/php2.tpl',
1 => 1432340483,
2 => 'file',
),
),
'nocache_hash' => '131625560a6a3cd8e63_08956040',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3cdeb99_58769208',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3cdeb99_58769208')) {
function content_5560a6a3cdeb99_58769208 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '131625560a6a3cd8e63_08956040';
?>
--><? echo ' hello world ';
echo '<? ';
echo '?> ';
?><--<?php }
}
?>

View File

@@ -0,0 +1,44 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_block_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:326065560a6a3b94eb7_16031521%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f35234d65e91ddc6d8e8d0b2a04722231b0ec710' =>
array (
0 => './templates/php_block_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '326065560a6a3b94eb7_16031521',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3b9aff9_10675968',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3b9aff9_10675968')) {
function content_5560a6a3b9aff9_10675968 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '326065560a6a3b94eb7_16031521';
?>
--><?php echo ' hello world ';
/*
* comment <?php is okay
*
* comment <?php once again
*/
echo '<?php ';
/*
* other comment <% foo
*/
echo '?> ';
$foo = 3;
?><--<?php }
}
?>

View File

@@ -0,0 +1,40 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_line_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:133305560a6a3a3a704_42353753%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f14bc0bc443795e95eef36e1f9f126b927b218e9' =>
array (
0 => './templates/php_line_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '133305560a6a3a3a704_42353753',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3a405e0_30236030',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3a405e0_30236030')) {
function content_5560a6a3a405e0_30236030 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '133305560a6a3a3a704_42353753';
?>
--><?php echo ' hello world ';
// comment <?php is okay
//
// comment <?php once again
echo '<?php ';
// other comment <% foo
echo '?> ';
$foo = 3;
?><--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:177985560a6a38ef339_29800787%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'c5b3211c15b5613e1e51240577ffb56f79a23e11' =>
array (
0 => './templates/php.tpl',
1 => 1432330332,
2 => 'file',
),
),
'nocache_hash' => '177985560a6a38ef339_29800787',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a38f5069_49874732',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a38f5069_49874732')) {
function content_5560a6a38f5069_49874732 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '177985560a6a38ef339_29800787';
?>
--><?php echo ' hello world ';
echo '<?php ';
echo '?> ';
$foo = 3;
?><--<?php }
}
?>

View File

@@ -0,0 +1,44 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/phptag_block_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:291935560a6a412b574_81106260%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'3f5a13ae129f09269eeb53e4d841f312f05f99d0' =>
array (
0 => './templates/phptag_block_comment.tpl',
1 => 1432393087,
2 => 'file',
),
),
'nocache_hash' => '291935560a6a412b574_81106260',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a4132537_37257195',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a4132537_37257195')) {
function content_5560a6a4132537_37257195 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '291935560a6a412b574_81106260';
?>
--><?php echo ' hello world ';
/*
* comment {/php} is okay
*
* comment {/php} once again {/php} foo
*/
echo '{php} ';
/*
* other comment <% foo
*/
echo '{/php} ';
$foo = 3;
?><--<?php }
}
?>

View File

@@ -0,0 +1,40 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/phptag_line_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:263845560a6a40d3f16_81532548%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'c6cabef8add2f0b2febbb09da07536088e4fd06d' =>
array (
0 => './templates/phptag_line_comment.tpl',
1 => 1432392915,
2 => 'file',
),
),
'nocache_hash' => '263845560a6a40d3f16_81532548',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a40daa69_91942870',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a40daa69_91942870')) {
function content_5560a6a40daa69_91942870 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '263845560a6a40d3f16_81532548';
?>
--><?php echo ' hello world ';
// comment {/php} is okay
//
// comment {/php} once again {/php} foo
echo '{php} ';
// other comment <% foo
echo '{/php} ';
$foo = 3;
?><--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/phptag_literal.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:317585560a6a41804b6_47884114%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'b932f74b35fdacf8ea961eb2af527e73e284304f' =>
array (
0 => './templates/phptag_literal.tpl',
1 => 1432393397,
2 => 'file',
),
),
'nocache_hash' => '317585560a6a41804b6_47884114',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a41a4ab7_49859504',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a41a4ab7_49859504')) {
function content_5560a6a41a4ab7_49859504 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '317585560a6a41804b6_47884114';
?>
-->{ php} echo ' hello world ';
echo 'foo ';
echo 'bar ';
$foo = 3;
{ /php}<--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/phptag.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:327235560a6a40834c4_22954871%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'6dc7afbc2f38d9fe48afeac335cac254cf56ee82' =>
array (
0 => './templates/phptag.tpl',
1 => 1432344711,
2 => 'file',
),
),
'nocache_hash' => '327235560a6a40834c4_22954871',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a408b565_26665705',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a408b565_26665705')) {
function content_5560a6a408b565_26665705 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '327235560a6a40834c4_22954871';
?>
--><?php echo ' hello world ';
echo '{php} ';
echo '{/php} ';
$foo = 3;
?><--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/script.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:178585560a6a4028064_71797346%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f286914a7c21fa1f5fb8070f4da6115a337a26f4' =>
array (
0 => './templates/script.tpl',
1 => 1432343903,
2 => 'file',
),
),
'nocache_hash' => '178585560a6a4028064_71797346',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a402e008_66427223',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a402e008_66427223')) {
function content_5560a6a402e008_66427223 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '178585560a6a4028064_71797346';
?>
--><script language='php'>
echo ' hello world ';
echo '<script language=\'php\'> ';
echo '</script> ';
</script><--<?php }
}
?>

View File

@@ -0,0 +1,32 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/asp.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:289205560a6a3d71c27_50543602%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'73781372a721db46f11c6408994a188fd91a8b55' =>
array (
0 => './templates/asp.tpl',
1 => 1432339743,
2 => 'file',
),
),
'nocache_hash' => '289205560a6a3d71c27_50543602',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3d7d6e0_95336026',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3d7d6e0_95336026')) {
function content_5560a6a3d7d6e0_95336026 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '289205560a6a3d71c27_50543602';
?>
--><?php echo '<%';?> echo 'hello world ';
echo '<?php echo '<%';?> ';
echo '<?php echo '%>';?> ';
<?php echo '%>';?><--<?php }
}
?>

View File

@@ -0,0 +1,32 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php2.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:245885560a6a3c36152_75547675%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'b1e2d903cd34cc1a067a96358cd41f1ec6f6a646' =>
array (
0 => './templates/php2.tpl',
1 => 1432340483,
2 => 'file',
),
),
'nocache_hash' => '245885560a6a3c36152_75547675',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3c41ad2_21145560',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3c41ad2_21145560')) {
function content_5560a6a3c41ad2_21145560 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '245885560a6a3c36152_75547675';
?>
--><?php echo '<? ';?>echo ' hello world ';
echo '<?php echo '<? ';?>';
echo '<?php echo '?>';?> ';
<?php echo '?>';?><--<?php }
}
?>

View File

@@ -0,0 +1,44 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_block_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:178885560a6a3ad32d5_10964447%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f35234d65e91ddc6d8e8d0b2a04722231b0ec710' =>
array (
0 => './templates/php_block_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '178885560a6a3ad32d5_10964447',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3ae6518_67021582',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3ae6518_67021582')) {
function content_5560a6a3ae6518_67021582 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '178885560a6a3ad32d5_10964447';
?>
--><?php echo '<?php ';?>echo ' hello world ';
/*
* comment <?php echo '<?php ';?>is okay
*
* comment <?php echo '<?php ';?>once again
*/
echo '<?php echo '<?php ';?>';
/*
* other comment <?php echo '<%';?> foo
*/
echo '<?php echo '?>';?> ';
$foo = 3;
<?php echo '?>';?><--<?php }
}
?>

View File

@@ -0,0 +1,40 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_line_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:139405560a6a3985781_34109568%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f14bc0bc443795e95eef36e1f9f126b927b218e9' =>
array (
0 => './templates/php_line_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '139405560a6a3985781_34109568',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3998006_97311186',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3998006_97311186')) {
function content_5560a6a3998006_97311186 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '139405560a6a3985781_34109568';
?>
--><?php echo '<?php ';?>echo ' hello world ';
// comment <?php echo '<?php ';?>is okay
//
// comment <?php echo '<?php ';?>once again
echo '<?php echo '<?php ';?>';
// other comment <?php echo '<%';?> foo
echo '<?php echo '?>';?> ';
$foo = 3;
<?php echo '?>';?><--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:14805560a6a3846b13_54373972%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'c5b3211c15b5613e1e51240577ffb56f79a23e11' =>
array (
0 => './templates/php.tpl',
1 => 1432330332,
2 => 'file',
),
),
'nocache_hash' => '14805560a6a3846b13_54373972',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3851f57_13715742',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3851f57_13715742')) {
function content_5560a6a3851f57_13715742 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '14805560a6a3846b13_54373972';
?>
--><?php echo '<?php ';?>echo ' hello world ';
echo '<?php echo '<?php ';?>';
echo '<?php echo '?>';?> ';
$foo = 3;
<?php echo '?>';?><--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/script.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:93805560a6a3ec26c9_68047538%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f286914a7c21fa1f5fb8070f4da6115a337a26f4' =>
array (
0 => './templates/script.tpl',
1 => 1432343903,
2 => 'file',
),
),
'nocache_hash' => '93805560a6a3ec26c9_68047538',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3ec79f1_10305020',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3ec79f1_10305020')) {
function content_5560a6a3ec79f1_10305020 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '93805560a6a3ec26c9_68047538';
?>
--><?php echo '<script language=\'php\'>
echo \' hello world \';
echo \'<script language=\\\'php\\\'> \';
echo \'</script> \';
</script>';?><--<?php }
}
?>

View File

@@ -0,0 +1,32 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/asp.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:229935560a6a3dcd829_42217180%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'73781372a721db46f11c6408994a188fd91a8b55' =>
array (
0 => './templates/asp.tpl',
1 => 1432339743,
2 => 'file',
),
),
'nocache_hash' => '229935560a6a3dcd829_42217180',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3dd92d3_74656038',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3dd92d3_74656038')) {
function content_5560a6a3dd92d3_74656038 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '229935560a6a3dcd829_42217180';
?>
-->&lt;% echo 'hello world ';
echo '&lt;% ';
echo '%&gt; ';
%&gt;<--<?php }
}
?>

View File

@@ -0,0 +1,32 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php2.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:157015560a6a3c88359_63631732%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'b1e2d903cd34cc1a067a96358cd41f1ec6f6a646' =>
array (
0 => './templates/php2.tpl',
1 => 1432340483,
2 => 'file',
),
),
'nocache_hash' => '157015560a6a3c88359_63631732',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3c93b22_47623553',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3c93b22_47623553')) {
function content_5560a6a3c93b22_47623553 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '157015560a6a3c88359_63631732';
?>
-->&lt;? echo ' hello world ';
echo '&lt;? ';
echo '?&gt; ';
?&gt;<--<?php }
}
?>

View File

@@ -0,0 +1,44 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_block_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:124415560a6a3b36cd1_88651193%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f35234d65e91ddc6d8e8d0b2a04722231b0ec710' =>
array (
0 => './templates/php_block_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '124415560a6a3b36cd1_88651193',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3b49338_82254829',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3b49338_82254829')) {
function content_5560a6a3b49338_82254829 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '124415560a6a3b36cd1_88651193';
?>
-->&lt;?php echo ' hello world ';
/*
* comment &lt;?php is okay
*
* comment &lt;?php once again
*/
echo '&lt;?php ';
/*
* other comment &lt;% foo
*/
echo '?&gt; ';
$foo = 3;
?&gt;<--<?php }
}
?>

View File

@@ -0,0 +1,40 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_line_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:142375560a6a39e0431_38387851%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f14bc0bc443795e95eef36e1f9f126b927b218e9' =>
array (
0 => './templates/php_line_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '142375560a6a39e0431_38387851',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a39f2691_36565807',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a39f2691_36565807')) {
function content_5560a6a39f2691_36565807 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '142375560a6a39e0431_38387851';
?>
-->&lt;?php echo ' hello world ';
// comment &lt;?php is okay
//
// comment &lt;?php once again
echo '&lt;?php ';
// other comment &lt;% foo
echo '?&gt; ';
$foo = 3;
?&gt;<--<?php }
}
?>

View File

@@ -0,0 +1,33 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:57295560a6a389e815_42812125%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'c5b3211c15b5613e1e51240577ffb56f79a23e11' =>
array (
0 => './templates/php.tpl',
1 => 1432330332,
2 => 'file',
),
),
'nocache_hash' => '57295560a6a389e815_42812125',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a38aa6a7_47166033',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a38aa6a7_47166033')) {
function content_5560a6a38aa6a7_47166033 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '57295560a6a389e815_42812125';
?>
-->&lt;?php echo ' hello world ';
echo '&lt;?php ';
echo '?&gt; ';
$foo = 3;
?&gt;<--<?php }
}
?>

View File

@@ -0,0 +1,34 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/script.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:169095560a6a3f1dcc0_82911785%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f286914a7c21fa1f5fb8070f4da6115a337a26f4' =>
array (
0 => './templates/script.tpl',
1 => 1432343903,
2 => 'file',
),
),
'nocache_hash' => '169095560a6a3f1dcc0_82911785',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3f23483_24967866',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3f23483_24967866')) {
function content_5560a6a3f23483_24967866 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '169095560a6a3f1dcc0_82911785';
?>
-->&lt;script language=&#039;php&#039;&gt;
echo ' hello world ';
echo '<?php echo '<script'; ?>
language=\'php\'> ';
echo '&lt;/script&gt; ';
&lt;/script&gt;<--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/asp.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:246675560a6a3d238b5_85634331%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'73781372a721db46f11c6408994a188fd91a8b55' =>
array (
0 => './templates/asp.tpl',
1 => 1432339743,
2 => 'file',
),
),
'nocache_hash' => '246675560a6a3d238b5_85634331',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3d29db5_12519429',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3d29db5_12519429')) {
function content_5560a6a3d29db5_12519429 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '246675560a6a3d238b5_85634331';
?>
--><--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php2.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:39035560a6a3bea963_25235859%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'b1e2d903cd34cc1a067a96358cd41f1ec6f6a646' =>
array (
0 => './templates/php2.tpl',
1 => 1432340483,
2 => 'file',
),
),
'nocache_hash' => '39035560a6a3bea963_25235859',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3bf0648_13182321',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3bf0648_13182321')) {
function content_5560a6a3bf0648_13182321 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '39035560a6a3bea963_25235859';
?>
--><--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_block_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:224995560a6a3a86215_42197786%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f35234d65e91ddc6d8e8d0b2a04722231b0ec710' =>
array (
0 => './templates/php_block_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '224995560a6a3a86215_42197786',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3a8c886_63033180',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3a8c886_63033180')) {
function content_5560a6a3a8c886_63033180 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '224995560a6a3a86215_42197786';
?>
--><--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php_line_comment.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:77515560a6a39396d5_00376471%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f14bc0bc443795e95eef36e1f9f126b927b218e9' =>
array (
0 => './templates/php_line_comment.tpl',
1 => 1432387784,
2 => 'file',
),
),
'nocache_hash' => '77515560a6a39396d5_00376471',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a393fa80_81855864',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a393fa80_81855864')) {
function content_5560a6a393fa80_81855864 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '77515560a6a39396d5_00376471';
?>
--><--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/php.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:16435560a6a37fcaa9_30604995%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'c5b3211c15b5613e1e51240577ffb56f79a23e11' =>
array (
0 => './templates/php.tpl',
1 => 1432330332,
2 => 'file',
),
),
'nocache_hash' => '16435560a6a37fcaa9_30604995',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3802929_58301174',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3802929_58301174')) {
function content_5560a6a3802929_58301174 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '16435560a6a37fcaa9_30604995';
?>
--><--<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:15
compiled from "./templates/script.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:100395560a6a3e707a1_50485997%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f286914a7c21fa1f5fb8070f4da6115a337a26f4' =>
array (
0 => './templates/script.tpl',
1 => 1432343903,
2 => 'file',
),
),
'nocache_hash' => '100395560a6a3e707a1_50485997',
'has_nocache_code' => false,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a3e76d53_68782354',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a3e76d53_68782354')) {
function content_5560a6a3e76d53_68782354 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '100395560a6a3e707a1_50485997';
?>
--><--<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "147767a714e2d87c805ebbab7b7d6da29ccc27ce" */ ?>
<?php
/*%%SmartyHeaderCode:2157455593927e9acb7_33930172%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'147767a714e2d87c805ebbab7b7d6da29ccc27ce' =>
array (
0 => '147767a714e2d87c805ebbab7b7d6da29ccc27ce',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '2157455593927e9acb7_33930172',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593927ebfaf4_91599384',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593927ebfaf4_91599384')) {
function content_55593927ebfaf4_91599384 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '2157455593927e9acb7_33930172';
?>
aa <% echo 'hello world';
echo ' multiline';%> ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.22-dev/32, created on 2015-05-10 10:31:39
compiled from "55e36bd9e4f94b1714c54e1aaa409bf4e3e1ee75" */ ?>
<?php
/*%%SmartyHeaderCode:2402554f338b984f49_54112984%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'55e36bd9e4f94b1714c54e1aaa409bf4e3e1ee75' =>
array (
0 => '55e36bd9e4f94b1714c54e1aaa409bf4e3e1ee75',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '2402554f338b984f49_54112984',
'has_nocache_code' => false,
'version' => '3.1.22-dev/32',
'unifunc' => 'content_554f338b98a935_80020913',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_554f338b98a935_80020913')) {
function content_554f338b98a935_80020913 ($_smarty_tpl) {
?>
<?php
$_smarty_tpl->properties['nocache_hash'] = '2402554f338b984f49_54112984';
?>
aa <% echo 'hello world';%> ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.22-dev/32, created on 2015-05-10 10:31:39
compiled from "1642f89cbc7f9a3d853a57f0078994f273337ee7" */ ?>
<?php
/*%%SmartyHeaderCode:25520554f338ba3b8c6_31527810%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'1642f89cbc7f9a3d853a57f0078994f273337ee7' =>
array (
0 => '1642f89cbc7f9a3d853a57f0078994f273337ee7',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '25520554f338ba3b8c6_31527810',
'has_nocache_code' => false,
'version' => '3.1.22-dev/32',
'unifunc' => 'content_554f338ba41d23_43807506',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_554f338ba41d23_43807506')) {
function content_554f338ba41d23_43807506 ($_smarty_tpl) {
?>
<?php
$_smarty_tpl->properties['nocache_hash'] = '25520554f338ba3b8c6_31527810';
?>
aa <?php echo '<?php'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "f9ee56210d8959c365fe4701b78db5d75e548b09" */ ?>
<?php
/*%%SmartyHeaderCode:172045559392812e634_53789779%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'f9ee56210d8959c365fe4701b78db5d75e548b09' =>
array (
0 => 'f9ee56210d8959c365fe4701b78db5d75e548b09',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '172045559392812e634_53789779',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928152200_99813019',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928152200_99813019')) {
function content_55593928152200_99813019 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '172045559392812e634_53789779';
?>
aa <?php echo '<?php';
echo ' ?>'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "fe80812fea5eccf490ddb11ddd80bc6a4ab0468d" */ ?>
<?php
/*%%SmartyHeaderCode:9565555939282137d3_21252914%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'fe80812fea5eccf490ddb11ddd80bc6a4ab0468d' =>
array (
0 => 'fe80812fea5eccf490ddb11ddd80bc6a4ab0468d',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '9565555939282137d3_21252914',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928238bf1_83788617',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928238bf1_83788617')) {
function content_55593928238bf1_83788617 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '9565555939282137d3_21252914';
?>
aa <?php echo '?>'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "7ecddd1e602197189a045b584e64eba30aeda3f7" */ ?>
<?php
/*%%SmartyHeaderCode:28370555939282fa8c4_86001826%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'7ecddd1e602197189a045b584e64eba30aeda3f7' =>
array (
0 => '7ecddd1e602197189a045b584e64eba30aeda3f7',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '28370555939282fa8c4_86001826',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_5559392831efa6_64411505',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5559392831efa6_64411505')) {
function content_5559392831efa6_64411505 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '28370555939282fa8c4_86001826';
?>
aa <?php /* ?> */ echo '?>'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "59db4e8155df290f7f39f96ad5295f0d0db9dad5" */ ?>
<?php
/*%%SmartyHeaderCode:1027355593927db1418_41275518%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'59db4e8155df290f7f39f96ad5295f0d0db9dad5' =>
array (
0 => '59db4e8155df290f7f39f96ad5295f0d0db9dad5',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '1027355593927db1418_41275518',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593927dd6630_91844690',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593927dd6630_91844690')) {
function content_55593927dd6630_91844690 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '1027355593927db1418_41275518';
?>
aa <?php echo 'hello world'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.22-dev/32, created on 2015-05-10 10:31:39
compiled from "34b9d6451914bcb8a4efdba500a5ac0a6e5405d5" */ ?>
<?php
/*%%SmartyHeaderCode:2803554f338b9da982_40052255%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'34b9d6451914bcb8a4efdba500a5ac0a6e5405d5' =>
array (
0 => '34b9d6451914bcb8a4efdba500a5ac0a6e5405d5',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '2803554f338b9da982_40052255',
'has_nocache_code' => false,
'version' => '3.1.22-dev/32',
'unifunc' => 'content_554f338b9e0582_52915495',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_554f338b9e0582_52915495')) {
function content_554f338b9e0582_52915495 ($_smarty_tpl) {
?>
<?php
$_smarty_tpl->properties['nocache_hash'] = '2803554f338b9da982_40052255';
?>
aa <script language='php'> echo 'hello world';</script> ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "d63fdf19292ea2ae9496a1714bafe3c185466c14" */ ?>
<?php
/*%%SmartyHeaderCode:261195559392803bff5_74826188%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'd63fdf19292ea2ae9496a1714bafe3c185466c14' =>
array (
0 => 'd63fdf19292ea2ae9496a1714bafe3c185466c14',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '261195559392803bff5_74826188',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928061193_65489387',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928061193_65489387')) {
function content_55593928061193_65489387 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '261195559392803bff5_74826188';
?>
aa <script language='php'> echo 'hello world';
echo ' multiline';</script> ae<?php }
}
?>

View File

@@ -0,0 +1,31 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "618ce7ae46169f19edd1fa756335f56a3c5a9e4e" */ ?>
<?php
/*%%SmartyHeaderCode:3190055593927937d46_15344313%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'618ce7ae46169f19edd1fa756335f56a3c5a9e4e' =>
array (
0 => '618ce7ae46169f19edd1fa756335f56a3c5a9e4e',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '3190055593927937d46_15344313',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_5559392795bd98_44307904',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5559392795bd98_44307904')) {
function content_5559392795bd98_44307904 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '3190055593927937d46_15344313';
?>
pa<?php echo '<%'; ?>
echo 'hello world';<?php echo '%>'; ?>
pe<?php }
}
?>

View File

@@ -0,0 +1,31 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "dfd2ae57b814217b02427e3a7c1e45326a2f0b66" */ ?>
<?php
/*%%SmartyHeaderCode:103955593927849679_50588865%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'dfd2ae57b814217b02427e3a7c1e45326a2f0b66' =>
array (
0 => 'dfd2ae57b814217b02427e3a7c1e45326a2f0b66',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '103955593927849679_50588865',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_5559392786d875_18499883',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5559392786d875_18499883')) {
function content_5559392786d875_18499883 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '103955593927849679_50588865';
?>
pa<?php echo '<?php'; ?>
echo 'hello world'; <?php echo '?>'; ?>
pe<?php }
}
?>

View File

@@ -0,0 +1,31 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "9ed2b318452fb487a35898fa974eb20312e4bfb2" */ ?>
<?php
/*%%SmartyHeaderCode:1808555593927a1dff2_87111518%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'9ed2b318452fb487a35898fa974eb20312e4bfb2' =>
array (
0 => '9ed2b318452fb487a35898fa974eb20312e4bfb2',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '1808555593927a1dff2_87111518',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593927a42790_30883460',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593927a42790_30883460')) {
function content_55593927a42790_30883460 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '1808555593927a1dff2_87111518';
?>
pa<?php echo '<script'; ?>
language='php'> echo 'hello world';<?php echo '</script'; ?>
>pe<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "2050297339b8c4054ff1b33b2b38fc6d68430bda" */ ?>
<?php
/*%%SmartyHeaderCode:2103555593927be7094_19662045%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'2050297339b8c4054ff1b33b2b38fc6d68430bda' =>
array (
0 => '2050297339b8c4054ff1b33b2b38fc6d68430bda',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '2103555593927be7094_19662045',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593927c0c104_05134464',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593927c0c104_05134464')) {
function content_55593927c0c104_05134464 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '2103555593927be7094_19662045';
?>
qa&lt;% echo 'hello world';%&gt;qe<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.22-dev/32, created on 2015-05-10 10:31:39
compiled from "55cd83958c8d05ab29afc80c279848839c11f167" */ ?>
<?php
/*%%SmartyHeaderCode:26070554f338b84deb4_59707349%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'55cd83958c8d05ab29afc80c279848839c11f167' =>
array (
0 => '55cd83958c8d05ab29afc80c279848839c11f167',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '26070554f338b84deb4_59707349',
'has_nocache_code' => false,
'version' => '3.1.22-dev/32',
'unifunc' => 'content_554f338b853e32_29589223',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_554f338b853e32_29589223')) {
function content_554f338b853e32_29589223 ($_smarty_tpl) {
?>
<?php
$_smarty_tpl->properties['nocache_hash'] = '26070554f338b84deb4_59707349';
?>
qa&lt;?php echo 'hello world'; ?&gt;qe<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "a56eaa5d218cb759bbe71ce0c1fbc258de024673" */ ?>
<?php
/*%%SmartyHeaderCode:268255593927b00774_04522717%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'a56eaa5d218cb759bbe71ce0c1fbc258de024673' =>
array (
0 => 'a56eaa5d218cb759bbe71ce0c1fbc258de024673',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '268255593927b00774_04522717',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593927b265d6_97960255',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593927b265d6_97960255')) {
function content_55593927b265d6_97960255 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '268255593927b00774_04522717';
?>
qa&lt;?php echo 'hello world';
echo ' multiline'; ?&gt;qe<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "e73aa3e4c45dc1026f40d8eebad4520034abdc96" */ ?>
<?php
/*%%SmartyHeaderCode:1805655593927ccae29_43538258%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'e73aa3e4c45dc1026f40d8eebad4520034abdc96' =>
array (
0 => 'e73aa3e4c45dc1026f40d8eebad4520034abdc96',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '1805655593927ccae29_43538258',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593927cf0a75_56720928',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593927cf0a75_56720928')) {
function content_55593927cf0a75_56720928 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '1805655593927ccae29_43538258';
?>
qa&lt;script language=&#039;php&#039;&gt; echo 'hello world';&lt;/script&gt;qe<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "bd55cfdb2baad5ef94c6ce6927a1472d3e7ab89e" */ ?>
<?php
/*%%SmartyHeaderCode:1764155593927683483_36757048%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'bd55cfdb2baad5ef94c6ce6927a1472d3e7ab89e' =>
array (
0 => 'bd55cfdb2baad5ef94c6ce6927a1472d3e7ab89e',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '1764155593927683483_36757048',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_555939276a7a82_80689539',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_555939276a7a82_80689539')) {
function content_555939276a7a82_80689539 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '1764155593927683483_36757048';
?>
a echo 'hello world';e<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "d95a7e705d03b24cfa9a7b37355e0f5928788f8f" */ ?>
<?php
/*%%SmartyHeaderCode:14704555939275a1529_87121270%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'd95a7e705d03b24cfa9a7b37355e0f5928788f8f' =>
array (
0 => 'd95a7e705d03b24cfa9a7b37355e0f5928788f8f',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '14704555939275a1529_87121270',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_555939275c4de3_59972044',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_555939275c4de3_59972044')) {
function content_555939275c4de3_59972044 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '14704555939275a1529_87121270';
?>
a echo 'hello world'; e<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:15
compiled from "c501e69e87dfcffdfa6ae4f31821fed01c952bcf" */ ?>
<?php
/*%%SmartyHeaderCode:139055593927767082_80962952%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'c501e69e87dfcffdfa6ae4f31821fed01c952bcf' =>
array (
0 => 'c501e69e87dfcffdfa6ae4f31821fed01c952bcf',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '139055593927767082_80962952',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_5559392778b0a5_42687903',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5559392778b0a5_42687903')) {
function content_5559392778b0a5_42687903 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '139055593927767082_80962952';
?>
a echo 'hello world';e<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "ffb90734275e1df8a2620858c2d29c29e857a6f4" */ ?>
<?php
/*%%SmartyHeaderCode:1578555939289931c6_03870123%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'ffb90734275e1df8a2620858c2d29c29e857a6f4' =>
array (
0 => 'ffb90734275e1df8a2620858c2d29c29e857a6f4',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '1578555939289931c6_03870123',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_555939289baec0_46087525',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_555939289baec0_46087525')) {
function content_555939289baec0_46087525 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '1578555939289931c6_03870123';
?>
aa <?php echo 'hallo'; ?> ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.22-dev/32, created on 2015-05-10 10:31:39
compiled from "9dbc9ad06b2758229c6aaa13dc090bf17f61e175" */ ?>
<?php
/*%%SmartyHeaderCode:7837554f338bdcc323_93297043%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'9dbc9ad06b2758229c6aaa13dc090bf17f61e175' =>
array (
0 => '9dbc9ad06b2758229c6aaa13dc090bf17f61e175',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '7837554f338bdcc323_93297043',
'has_nocache_code' => false,
'version' => '3.1.22-dev/32',
'unifunc' => 'content_554f338bdd0646_40859231',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_554f338bdd0646_40859231')) {
function content_554f338bdd0646_40859231 ($_smarty_tpl) {
?>
<?php
$_smarty_tpl->properties['nocache_hash'] = '7837554f338bdcc323_93297043';
?>
aa { php} echo 'hallo'; {/php} ae<?php }
}
?>

View File

@@ -0,0 +1,29 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "afd558b7df25c05c17fef29729290c8efe019ae5" */ ?>
<?php
/*%%SmartyHeaderCode:2344155593928c4bd77_40527996%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'afd558b7df25c05c17fef29729290c8efe019ae5' =>
array (
0 => 'afd558b7df25c05c17fef29729290c8efe019ae5',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '2344155593928c4bd77_40527996',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928c6d2f6_64447966',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928c6d2f6_64447966')) {
function content_55593928c6d2f6_64447966 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '2344155593928c4bd77_40527996';
?>
aa { php} echo 'hallo'; { /php} ae<?php }
}
?>

View File

@@ -0,0 +1,31 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/phptag_nocache.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:256605560a6a41fea39_24766095%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'258487733f7ac8a0af3ec4397e7d90726fff8d1b' =>
array (
0 => './templates/phptag_nocache.tpl',
1 => 1432394864,
2 => 'file',
),
),
'nocache_hash' => '256605560a6a41fea39_24766095',
'has_nocache_code' => true,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a4204ea6_14781333',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a4204ea6_14781333')) {
function content_5560a6a4204ea6_14781333 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '256605560a6a41fea39_24766095';
?>
--><?php echo '/*%%SmartyNocache:256605560a6a41fea39_24766095%%*/<?php echo $_smarty_tpl->getTemplateVars(\'foo\');
?>/*/%%SmartyNocache:256605560a6a41fea39_24766095%%*/';?>
<--<?php }
}
?>

View File

@@ -0,0 +1,31 @@
<?php /* Smarty version 3.1.24-dev/7, created on 2015-05-23 18:11:16
compiled from "./templates/phptag_nocache.tpl" */ ?>
<?php
/*%%SmartyHeaderCode:96695560a6a4289380_73148826%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'258487733f7ac8a0af3ec4397e7d90726fff8d1b' =>
array (
0 => './templates/phptag_nocache.tpl',
1 => 1432394864,
2 => 'file',
),
),
'nocache_hash' => '96695560a6a4289380_73148826',
'has_nocache_code' => true,
'version' => '3.1.24-dev/7',
'unifunc' => 'content_5560a6a428f166_91455172',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5560a6a428f166_91455172')) {
function content_5560a6a428f166_91455172 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '96695560a6a4289380_73148826';
?>
--><?php echo '/*%%SmartyNocache:96695560a6a4289380_73148826%%*/<?php echo $_smarty_tpl->getTemplateVars(\'foo\');
?>/*/%%SmartyNocache:96695560a6a4289380_73148826%%*/';?>
<--<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "334b0d8ca0d4913d0bd1388b65cf1b4b85cddd0a" */ ?>
<?php
/*%%SmartyHeaderCode:719555593928a81104_54626482%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'334b0d8ca0d4913d0bd1388b65cf1b4b85cddd0a' =>
array (
0 => '334b0d8ca0d4913d0bd1388b65cf1b4b85cddd0a',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '719555593928a81104_54626482',
'has_nocache_code' => true,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928aa7ee5_46860318',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928aa7ee5_46860318')) {
function content_55593928aa7ee5_46860318 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '719555593928a81104_54626482';
?>
aa <?php echo '/*%%SmartyNocache:719555593928a81104_54626482%%*/<?php echo \'hallo\'; ?>/*/%%SmartyNocache:719555593928a81104_54626482%%*/';?>
ae<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "769af836ce3f341691ba88b90a507252276ee805" */ ?>
<?php
/*%%SmartyHeaderCode:3839555939286d0f43_36825149%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'769af836ce3f341691ba88b90a507252276ee805' =>
array (
0 => '769af836ce3f341691ba88b90a507252276ee805',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '3839555939286d0f43_36825149',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_555939286f65b4_79681215',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_555939286f65b4_79681215')) {
function content_555939286f65b4_79681215 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '3839555939286d0f43_36825149';
?>
aa <?php echo '<%'; ?>
ee<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "20e1c457e969bae7d525db269cd4183cbabc96fb" */ ?>
<?php
/*%%SmartyHeaderCode:17612555939287b9485_61342744%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'20e1c457e969bae7d525db269cd4183cbabc96fb' =>
array (
0 => '20e1c457e969bae7d525db269cd4183cbabc96fb',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '17612555939287b9485_61342744',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_555939287dce50_99371285',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_555939287dce50_99371285')) {
function content_555939287dce50_99371285 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '17612555939287b9485_61342744';
?>
aa <?php echo '%>'; ?>
ee<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "94bff756fd8c17c92272c3157227807e71b9b76b" */ ?>
<?php
/*%%SmartyHeaderCode:14937555939285050e4_85822969%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'94bff756fd8c17c92272c3157227807e71b9b76b' =>
array (
0 => '94bff756fd8c17c92272c3157227807e71b9b76b',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '14937555939285050e4_85822969',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_55593928528da3_14468032',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_55593928528da3_14468032')) {
function content_55593928528da3_14468032 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '14937555939285050e4_85822969';
?>
aa <?php echo '<?php'; ?>
ee<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "95e5f93039ca422029731c3b33e50227679f6a1a" */ ?>
<?php
/*%%SmartyHeaderCode:9758555939285e89e3_50709710%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'95e5f93039ca422029731c3b33e50227679f6a1a' =>
array (
0 => '95e5f93039ca422029731c3b33e50227679f6a1a',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '9758555939285e89e3_50709710',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_5559392860d997_48643331',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_5559392860d997_48643331')) {
function content_5559392860d997_48643331 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '9758555939285e89e3_50709710';
?>
aa <?php echo '?>'; ?>
ee<?php }
}
?>

View File

@@ -0,0 +1,30 @@
<?php /* Smarty version 3.1.24-dev/6, created on 2015-05-18 00:58:16
compiled from "db45d9a8f45323aaa436da454b9314d7392a12e8" */ ?>
<?php
/*%%SmartyHeaderCode:8981555939288a60d5_67613954%%*/
if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid = $_smarty_tpl->decodeProperties(array (
'file_dependency' =>
array (
'db45d9a8f45323aaa436da454b9314d7392a12e8' =>
array (
0 => 'db45d9a8f45323aaa436da454b9314d7392a12e8',
1 => 0,
2 => 'string',
),
),
'nocache_hash' => '8981555939288a60d5_67613954',
'has_nocache_code' => false,
'version' => '3.1.24-dev/6',
'unifunc' => 'content_555939288cbd03_37843953',
),false);
/*/%%SmartyHeaderCode%%*/
if ($_valid && !is_callable('content_555939288cbd03_37843953')) {
function content_555939288cbd03_37843953 ($_smarty_tpl) {
$_smarty_tpl->properties['nocache_hash'] = '8981555939288a60d5_67613954';
?>
aa <?php echo '<script'; ?>
language='php'> echo 'hello world'; ae<?php }
}
?>