首先在系统后台-模版-全局标签测试-将下面的代码贴入: 01 {dede:field name= 'typename' runphp= 'yes' } 02 global $ test ; 03 $ test = @me; 04 @me = '' ; 05 {/dede:field} 06 07 {dede:field name= 'id' runphp= 'yes' } 08 global $ test ; 09 funct
首先在系统后台->模版->全局标签测试->将下面的代码贴入:
01 |
{dede:field name= 'typename' runphp= 'yes' }
|
07 |
{dede:field name= 'id' runphp= 'yes' }
|
09 |
function getnextone($one,$tow){
|
12 |
$a = getnextone(@me,$ test );
|
|
然后选择环境变量为任意一个栏目,然后提交测试。
说明:id字段中调用了typename字段的值,为一些模版中的变量传递提供了一个方式,那就是global,将变量设定为全局变量。