Smarty的保留变量

阅读更多

一 代码

index.php
assign('title','Smarty保留变量');
	$smarty->display('3/index.tpl');
?>
 
index.tpl




{ $title }



{* 使用get变量获取url中的变量值(ex: http://localhost/tm/sl/28/3/index.php?type=computer)*}
变量type的值是:{ $smarty.get.type }
当前路径为:{ $smarty.server.PHP_SELF}
当前时间为:{$smarty.now}
 
二 运行结果
变量type的值是:
当前路径为:/test/29/3/index.php
当前时间为:1492600251

你可能感兴趣的:(Smarty,保留变量)