Connecting Tech Pros Worldwide Forums | Help | Site Map

Array Help

Damodhar
Guest
 
Posts: n/a
#1: Mar 14 '08
HI any one help me to solve the solution



one array having the values like

$array1 = array(1,2,3,4);

$array2 = array(A,B,C,D);


i want to create the new array array using the array1 and array2

like :
$ans = array(1,A,2,B,3,C,4,D)


how can i create the new array is there any predefined functions or
any ???

Alred Wallace
Guest
 
Posts: n/a
#2: Mar 14 '08

re: Array Help



"Damodhar" <damu.be@gmail.coma écrit dans le message de news:
5860b5e3-c196-424b-8f58-72fea657dd1f...oglegroups.com...
Quote:
HI any one help me to solve the solution
>
>
>
one array having the values like
>
$array1 = array(1,2,3,4);
>
$array2 = array(A,B,C,D);
>
>
i want to create the new array array using the array1 and array2
>
like :
$ans = array(1,A,2,B,3,C,4,D)
>
>
how can i create the new array is there any predefined functions or
any ???

$newArray = array();
for( $i=0;$i<count( $array1 ); $i++ ){
$newArray[] = array1[$i];
$newArray[] = array2[$i];
}


Guillaume
Guest
 
Posts: n/a
#3: Mar 14 '08

re: Array Help


Damodhar a écrit :
Quote:
one array having the values like
>
$array1 = array(1,2,3,4);
>
$array2 = array(A,B,C,D);
>
>
i want to create the new array array using the array1 and array2
>
like :
$ans = array(1,A,2,B,3,C,4,D)
http://www.php.net/array_merge

Regards,
--
Guillaume
Damodhar
Guest
 
Posts: n/a
#4: Mar 14 '08

re: Array Help


hi Alred Wallace,

thanks for your code wonderful,

Closed Thread


Similar PHP bytes