runphp='yes'运行php,是dedecms织梦的一个较量重要的标签,有时候大概会需要做一些逻辑判定和运算,可能织梦提供的标签做不到,就需要用到运行自界说的php成果。
在runphp='yes'内里,我们可以做逻辑判定,我们也可以举办php的运行。甚至对dedecms的数据库举办操纵。接下来我们就来谈谈dedecmsrunphp='yes'的一些根基操纵。
1、runphp='yes'在轮回中的判定。
{dede:arclist row=14 titlelen=32 noflag='h'}
<li><a href=http://www.dede58.com/"[field:arcurl/]">[field:title/]</a>
[field:id runphp='yes']
if(@me==5){
@me='选中';
}else{
@me='没选中';
}
[/field:id]
</li>
{/dede:arclist}
这个思路很简朴,filed:id的值给了@me。然后用@me这个方法来举办判定,可以举办逻辑运算,也可以举办逻辑判定。@me其实是代表当前这个变量的值,假如你修改了@me的值,其实就相当于修改了这个变量的值。
2、runphp='yes'和数据库彼此团结利用
global $dsql;
$a="SELECT game.assprice,game.msg,game.bigpic,game.model,game.sptype,gameetime,game.brand
FROM dede_addongame_tg as game where game.aid=@me";
$dsql->Execute()
3、利用if判定某个字段是否为空,如利用if语句判定摘要是否为空,假如有摘要就显示摘要模块,假如没有就不显示
{dede:field.description runphp='yes'}
if (@me <> '') {
@me = '<div>'.@me.'</div>';
} else {
@me = '';
}
{/dede:field.audio}
4、好比挪用某一栏目文章列表时,利用if判定是文章是否有大略标题,假如有就挪用大略标题
{dede:arclist row='10'}
[field:array runphp='yes']
if (@me['shorttitle'] == '') {
@me = @me['title'];
} else {
@me = @me['shorttitle'];
}
[/field:array]
{/dede:arclist}