电话
13363039260
global
表示获取一个外部变量,除了数据库密码之外,能调用系统的任何配置参数,形式为:
html
{dede:global name='变量名称'}{/dede:global}
1
或
html
{dede:global name='变量名称'/}
1
其中变量名称不能加 $ 符号,如变量 $cfg_cmspath ,应该写成
html
{dede:global name='cfg_cmspath'/}
1
foreach
用来输出一个数组,形式为:
html
{dede:foreach array='数组名称'}
[field:key/] [field:value/]
{/dede:foreach}
1
2
3
include
引入一个文件,形式为:
html
{dede:include file='文件名称' ismake='是否为dede板块模板(yes/no)'/}
1
文件路径优先顺序
绝对路径 > include文件夹 > CMS安装目录 > CMS主模板目录
自定义函数
html
{dede:标记名称 属性='值' function='youfunction("参数一","参数二","@me")'/}
1
其中 @me 用于表示当前标记的值,其它参数由你的函数决定是否存在,例如:
html
{dede:field name='pubdate' function='strftime("%Y-%m-%d %H:%M:%S","@me")'/}
1
DedeCMS允许有限的编程扩展,格式为:
html
{dede:tagname runphp='yes'}
$aaa = @me;
@me = "123456";
{/dede:tagname}
1
2
3
4
注:
@me 表示这个标记本身的值,因此标记内编程是不能使用 echo 之类的语句的,只能把所有返回值传递给 @me。
此外由于程序代码占用了底层模板 InnerText 的内容,因此需编程的标记只能使用默认的 InnerText