首页 > CMS > 织梦DEDE > 正文

织梦runphp=yes标签中调用其他field值的方法

2024-07-12 08:57:41
字体:
来源:转载
供稿:网友

织梦的标签里可以通过runphp=yes的方式来执行php代码,但有些时候我们需要在一个标签的runphp=yes中调用其他的field值来作为条件,那么该如何做呢?

上网搜索了下,以下办法可以实现:

用全局变量来解决

  1. {dede:php}$GLOBALS['xxoo']=$refObj->Fields['fieldname']{/dede:php}
  2. {dede:field.xxxx runphp="yes"}@me="test".@me."-test".$GLOBALS['xxoo'];{/dede:field.xxxx}

即,先开一个PHP的标签,把想赋的值替换给global变量。然后在另外的运行中将field值赋值给他。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表