如何在 ezpublish 模板中合并数组?
如果有人可以帮助我在 ezpublish 中添加数组。
我有数组链接
{def $a = array(a,b,c)}
{def $b = array(d,e)}
我想要一个数组中的输出,例如
$c = array(a,b,c,d,e);
If any one could help me to add arrays in ez publish.
i have arrays link
{def $a = array(a,b,c)}
{def $b = array(d,e)}
i want an output in an array like
$c = array(a,b,c,d,e);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这肯定会起作用:
输出:
数组(a、b、c、d、e)
This will surely work:
output:
array(a,b,c,d,e)