Hi,
i got 2 arrays
they have one dimension and i want to build a third array with 2 dimension with the 2 first
example:
tab 1=[1,2,3,4,5,6]
tab 2=[a,b,c,d,e,f]
and i want to build
[[1,2,3,4,5,6][a,b,c,d,e,f]]
i know how to do by coding but i don't know if a function is already in PhP ?