码迷,mamicode.com
首页 > 其他好文 > 详细

保留变量

时间:2018-01-01 17:05:06      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:pat   blog   _for   log   目录名   dir   直接   www.   com   

{$smarty} 保留变量

可以通过PHP的保留变量 {$smarty}来访问一些环境变量。 下面是这些变量的列表:

页面请求变量

页面请求变量如$_GET$_POST$_COOKIE$_SERVER$_ENV 和 $_SESSION 可以通过下面的方式来使用:

Example 4.8. 显示页面请求变量

{* display value of page from URL ($_GET) http://www.example.com/index.php?page=foo *}
{$smarty.get.page}

{* display the variable "page" from a form ($_POST[‘page‘]) *}
{$smarty.post.page}

{* display the value of the cookie "username" ($_COOKIE[‘username‘]) *}
{$smarty.cookies.username}

{* display the server variable "SERVER_NAME" ($_SERVER[‘SERVER_NAME‘])*}
{$smarty.server.SERVER_NAME}

{* display the system environment variable "PATH" *}
{$smarty.env.PATH}

{* display the php session variable "id" ($_SESSION[‘id‘]) *}
{$smarty.session.id}

{* display the variable "username" from merged get/post/cookies/server/env *}
{$smarty.request.username}

{$smarty.now}

当前的时间戳 可以通过{$smarty.now}来获取。 时间戳是从1970年1月1日开始计算到当前的秒数。 当前时间戳可以被date_format 修饰器使用并显示。 注意:在每次使用该变量时都会调用time()函数。 比如说一个程序花了三秒来执行,在开头和结束时都调用了$smarty.now,那么这两个数值将差三秒。

{* use the date_format modifier to show current date and time *}
{$smarty.now|date_format:‘%Y-%m-%d %H:%M:%S‘}

{$smarty.const}

直接访问PHP的常量。参见 smarty 常量.

<?php
// the constant defined in php
define(‘MY_CONST_VAL‘,‘CHERRIES‘);
?>

在模板中显示常量

{$smarty.const.MY_CONST_VAL}

{$smarty.capture}

Smarty内置函数 {capture}..{/capture}可以捕获其中的代码输出。 通过{$smarty.capture}变量可以使用这些输出的代码。 参见 {capture}函数。

{$smarty.config}

{$smarty.config}变量可以获取 配置变量。 {$smarty.config.foo}可获取设置变量的{#foo#}。参见 {config_load}。

{$smarty.section}

{$smarty.section}变量是{section} 循环中的属性。 它提供了一些很有用的值,如.first.index等等。

{$smarty.template}

返回当前的模板名称(不带目录名)。

{$smarty.template_object}

返回当前模板对象。

{$smarty.current_dir}

返回当前模板的目录名称。

{$smarty.version}

<div id="footer">由 Smarty {$smarty.version} 引擎驱动</div>

返回编译当前模板的Smarty版本。

{$smarty.block.child}

返回子模板提供的区块代码。 参见模板继承

{$smarty.block.parent}

返回父模板提供的区块代码。 参见模板继承

{$smarty.ldelim}, {$smarty.rdelim}

用于显示左定界符和右定界符。等同于 {ldelim},{rdelim}

参见 赋值变量 和 配置变量

 

 

 

 

 

保留变量

标签:pat   blog   _for   log   目录名   dir   直接   www.   com   

原文地址:https://www.cnblogs.com/gaocy/p/8167186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!