Hello all, I have two arrays as follows:
$x = array(3,4,6,8); $y = array(10,20,40,10); I need these arrays could be merged with '0' in between. Result expected : $x = array(1,2,3,4,5,6,7,8); $y = array(0,0,10,20,0,40,0,10); Can anybody help me ? Thanks in advance. Max