ECshop模板中怎么打印变量?

2024年11月16日 00:44
有3个网友回答
网友(1):

  打开includes/cls_template.php 找到function get_val($val){}函数,在函数体里面foreach ($moddb AS $key => $mod){}循环体内增加一个
case 'print_r':
$p='print_r('.$p.',true)';
break;
模板中就可以这样使用:

网友(2):

2.7.2的话,直接写

2.7.3打补丁的

修改一下 /includes/cls_template.php 文件
将下面这行代码删除
$source = preg_replace("/<\?[^><]+\?>|<\%[^><]+\%>|]+language[^>]*=[^>]*php[^>]*>[^><]*<\/script\s*>/iU", "", $source);

然后在写php代码

网友(3):

<{dump var=$xxxx}>