php - How can i merge array in ezpublish template? -


if 1 me add arrays in ez publish.

i have arrays link

{def $a = array(a,b,c)} {def $b = array(d,e)} 

i want output in array like

$c = array(a,b,c,d,e); 

this surely work:

{def $c = merge($a,$b)} 

output: array(a,b,c,d,e)


Comments

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -