That should do it:

"Max" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
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

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to