当前位置: 首页 > 图文教程 > 网络编程 > PHP > smarty的保留变量问题

PHP
php SQL之where语句生成器
php 随机生成10位字符代码
PHP获取类中常量,属性,及方法列表的方法
php 动态执行带有参数的类方法
php pcntl_fork和pcntl_fork 的用法
PHP Document 代码注释规范
php error_log 函数的使用
PHP 加密与解密的斗争
对squid中refresh_pattern的一些理解和建议
一个php导出oracle库的php代码
PHP 中执行排序与 MySQL 中排序
php 保留小数点
将数组写入txt文件 var_export
php反弹shell实现代码
PHP 危险函数解释 分析
mysql_fetch_row,mysql_fetch_array,mysql_fetch_assoc的区别
Uchome1.2 1.5 代码学习 common.php
配置Apache2.2+PHP5+CakePHP1.2+MySQL5运行环境
php mssql 分页SQL语句优化 持续影响
PHP mb_convert_encoding 获取字符串编码类型实现代码

PHP 中的 smarty的保留变量问题


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 110 ::
收藏到网摘: n/a

{$smarty}保留变量可以被用于访问一些特殊的模板变量,以下是全部页面请求变量。 以下是访问页面请求变量诸如get,post,cookies,server,enviroment和session变量的例子. 例如{$smarty.server.SERVER_NAME}取得服务器变量,{$smarty.env.PATH}取得系统环境变量path, {$smarty.request.username}取得get/post/cookies/server/env的复合变量。
  {$smarty.now}变量用于访问当前时间戳.
  可以用 date_format调节器格式化输出. 例如{$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}
  {$smarty.const}
  你可以直接访问PHP常量. 例如{$smarty.const._MY_CONST_VAL}
  {$smarty.capture}
  可以通过 {capture}..{/capture}结构 截取的输出可以使用{$smarty} 变量访问.
  {$smarty.config}
  {$smarty}变量 可以访问已经加载的config变量.
  例如 {$smarty.config.foo}就可以表示 {#foo#}.
  {$smarty.section}, {$smarty.foreach}
  {$smarty} 变量可以访问'section'和'foreach'循环的属性.
  {$smarty.template}
  显示当前被处理的模板的名字.
  {$smarty.version}
  显示smarty模板的版本
  {$smarty.ldelim}
  显示左分隔符
  {$smarty.rdelim}
  显示右分隔符