|
PHP - Smarty模板引擎 - 翻译 - Manual手册 - Chapter 3. Basic Syntax第3章 基础语法 - Comments注释
Comments
注释
Template comments are surrounded by asterisks, and that is surrounded
by the
delimiter
tags like so:
模板注释被星号包围,然后被分隔标记包围,例如:
Smarty comments are NOT displayed in the final output of the template,
unlike <!-- HTML comments -->.
These are useful for making internal notes in the templates which no one will see ;-)
在最终模板的输出中不显示Smarty注释,与<!-- HTML注释 -->不同,非常适合作为模板的内部注释,而不会被看到。
Example 3-1. Comments within a template
例 3-1. 在模板中的注释
{* I am a Smarty comment, I don't exist in the compiled output *}
{* 我是一个Smarty 注释,我在编译输出结果中不存在 *}
<html>
<head>
<title>{$title}</title>
</head>
<body>
{* another single line smarty comment *}
{* 另一个单行的smarty注释 *}
<!-- HTML comment that is sent to the browser -->
<!-- HTML注释将被发送到浏览器 -->
{* this multiline smarty
comment is
not sent to browser
*}
{* 这是多行smarty
注释不会
被发送到浏览器
*}
{*********************************************************
Multi line comment block with credits block
@ author: bg@example.com
@ maintainer: support@example.com
@ para: var that sets block style
@ css: the style output
**********************************************************}
{*********************************************************
包括贡献区块的多行注释区块
@ author: bg@example.com
@ maintainer: support@example.com
@ para: 设置区块样式的变量
@ css: 输出样式
**********************************************************}
{* The header file with the main logo and stuff *}
{* 头文件包括主标志和材料 *}
{include file='header.tpl'}
{* Dev note: the $includeFile var is assigned in foo.php script *}
{* 开发注释:$includeFile变量在foo.php脚本中设置 *}
<!-- Displays main content block -->
<!-- 显示主要内容区块 -->
{include file=$includeFile}
{* this <select> block is redundant *}
{* 这个 <select> 区块是多余的 *}
{*
<select name="company">
{html_options options=$vals selected=$selected_id}
</select>
*}
<!-- Show header from affiliate is disabled -->
<!-- 不显示来自于会员的头部 -->
{* $affiliate|upper *}
{* you cannot nest comments *}
{* 你不能嵌套注释 *}
{*
<select name="company">
{* <option value="0">-- none -- </option> *}
{html_options options=$vals selected=$selected_id}
</select>
*}
{* cvs tag for a template, below the 36 SHOULD be an american currency
. however its converted in cvs.. *}
{* 模板中的cvs标记,下面的36应当为美元符号。
在cvs中将被转换 *}
{* $Id: Exp $ *}
{* $Id: *}
</body>
</html>
|
|
[Comments注释 - 文档]
http://www.smarty.net/manual/en/language.basic.syntax.php#language.syntax.comments
[PHP - Smarty模板引擎 - 官方网站]
http://smarty.php.net/
[PHP - Smarty模板引擎 - 下载地址]
当前版本
2.6.18,
http://smarty.php.net/do_download.php?download_file=Smarty-2.6.18.tar.gz
全部列表,
http://smarty.php.net/download.php
[PHP - Smarty模板引擎 - 相关论坛]
http://php.board.newsmth.net/
http://forum.csdn.net/SList/PHP/
http://www.phpinsider.com/smarty-forum/
http://news.php.net/php.smarty.general
http://news.php.net/php.smarty.dev
http://news.php.net/php.smarty.cvs
[PHP - Smarty模板引擎 - 关键词]
smarty
[PHP - Smarty模板引擎 - Manual手册]
借助cycle实现循环输出值,
http://smarty.php.net/manual/en/language.function.cycle.php
Smarty的cat函数,
http://smarty.php.net/manual/en/language.modifier.cat.php
Smarty的upper函数,
http://smarty.php.net/manual/en/language.modifier.upper.php
[PHP - Smarty模板引擎 - Manual手册 - Chapter 3. Basic Syntax第3章 基础语法]
翻译, Comments注释, http://smarty.php.net/manual/en/language.basic.syntax.php#language.syntax.comments
Math数学运算,
http://smarty.php.net/manual/en/language.math.php
[PHP - Smarty模板引擎 - Manual手册 - Chapter 5. Variable Modifiers第5章 变量修饰符]
cat将值连接到给定变量之后,
http://smarty.php.net/manual/en/language.modifier.cat.php
upper将字符串转换成大写字母,
http://smarty.php.net/manual/en/language.modifier.upper.php
escape转义修饰符, http://smarty.php.net/manual/en/language.modifier.escape.php
[PHP - Smarty模板引擎 - Manual手册 - Chapter 7. Built-in Functions第7章 内建函数]
{config_load}用于从一个配置文件加载配置变量到模板中, http://www.smarty.net/manual/en/language.builtin.functions.php
{foreach},{foreachelse}用于像访问序数数组一样访问关联数组, http://smarty.php.net/manual/en/language.function.foreach.php
{strip}在显示之前删除每行前后多余的空格和回车字符,
http://smarty.php.net/manual/en/language.function.strip.php
[PHP - Smarty模板引擎 - Manual手册 - Chapter 8. Custom Functions第8章 自定义函数]
{assign}用于在模板执行过程中设置模板变量,
http://smarty.php.net/manual/en/language.custom.functions.php#language.function.assign
{counter}计数器, http://smarty.php.net/manual/en/language.custom.functions.php
[PHP - Smarty模板引擎 - Manual手册 - 第13章 Smarty类方法]
register_function()动态注册模板函数插件,
http://smarty.php.net/manual/en/api.register.function.php
assign_by_ref()按引用赋值,
http://smarty.php.net/manual/en/api.assign.by.ref.php |
|