首页 >

织梦DedeCMS模板内怎么加入php代码

一 | 模板页面内嵌入php

织梦DedeCMS模板内怎么加入php代码

例如:

  1. {dede:name runphp=’yes’}
  2. $str = “hello”;
  3. @me = $str;
  4. @me .= “world”
  5. {/dede:name}

最终输出结果为hello world

其实”name”为任意定义的名字,”@me=”后面的值是最终用于输出的值,就拿它代替echo来用(如果直接用echo,模板生成的时候报错,这就是有所限制的地方,唉)。

二 | 引用php文件

如果你想在include的文件中使用PHP,则加上 source=’value’

  1. {dede:include runphp=’yes’ source=’value’ file=”/}

PHP编写的规范为:

一 | PHP编码中不需要再加符号;

二 | 如果想处理当前标记的值(上面第一种情况),使用 @me 表示当前的值;

三 | 如果直接引入PHP并要获得运行后的值,必须用 $DedeMeValue 表示运行这个PHP后最终返回的值(因此不能用HTML混合的写法)。

例如:

  1. {dede:field runphp=’yes’}
  2. $aaa=200;
  3. $DedeMeValue=100;
  4. $DedeMeValue += $aaa;

织梦DedeCMS模板内怎么加入php代码
  • 织梦DedeCMS选择特定的栏目搜索技巧
  • 织梦DedeCMS选择特定的栏目搜索技巧 | 织梦DedeCMS选择特定的栏目搜索技巧 ...

    织梦DedeCMS模板内怎么加入php代码
  • 织梦DedeCMS首页调用单页文档内容方法
  • 织梦DedeCMS首页调用单页文档内容方法 | 织梦DedeCMS首页调用单页文档内容方法 ...

    织梦DedeCMS模板内怎么加入php代码
  • 织梦DedeCMS模板织梦DedeCMS新建php页面支持读取模板标签
  • 织梦DedeCMS模板织梦DedeCMS新建php页面支持读取模板标签 | 织梦DedeCMS模板织梦DedeCMS新建php页面支持读取模板标签 ...