乾坤文说
首页
文章
记录
说说
当前位置:
首页
>
文章
>
ecshop 3.6 在前台模板中打印数组
ecshop 3.6 在前台模板中打印数组
2018-05-13
3266
文章
ecshop 3.6 与旧版本或小京东什么的有所不同,旧版本用的是 smarty2 ,而新版 ecshop 用的是 smarty3 语法上有所不同,不支持 PHP 原生语法
<?php var_dump(xxx);?>
,但可以自定义一个打印函数来打印数组,修改如下: 找到
include/cls_template.php
文件 找到
get_val()
函数(大约650行),在最后的
default: break;
上方加入以下内容:
case 'print_r':
$p = 'print_r(' . $p . ',true)';
break;
使用时,在模板中通过
{$some|print_r}
来打印。
原创文章,如若转载,请注明出处:
http://loc.darlang.com/post/886.html
ecshop
php
数组
ecs
print
dump
点赞
(
0
)
点踩
(
0
)
收藏
(
0
)
评论 (
0
)
搜索
前端
哈哈哈
dasd
前端
是是是
开发
关键词
是是是
哈哈哈
关键词
站点标签
微信
官方文档
前端必备
win7
wp
选择器
分享
错误收集
restapi
网站配置
正则
url
es6
文件下载
print
post
电影
ecscript 6
fixtop
iframe
分类目录
分享
WordPress
plug-in
html
javascript
1
css
记录
文章
推荐文章
1
jquery 灯箱插件 fancybox 1.x
2
CSS 错误提示 Uncaught SyntaxError: Invalid or unexpected token
3
window图片查看器背景泛黄解决办法
4
WordPress Feed、sitemap 页面提示 This page contains the following errors:error on line 2 at column 6: XML...
5
discuz X3 点击注册链接跳转填写邮箱界面解决办法
6
Javascript 数组方法兼容性写法 indexOf()、forEach()、map()、filter()、some()、every()、find()、findIndex()、copyWithin()、includes()、reduce()
7
Adobe CC 2018 全线产品下载链接
8
WordPress 官方文档:页面及内容条件判断标签及用法大全
9
解决 swiper/vue autoplay 不能自动播放问题
10
取消window开机弹出网页
评论 (0)