Profile Image

Ejaz Bhatti01 Mar 2023 05:51

How to merge array in php?

Profile Image

shaheryar bhatti01 Mar 2023 05:53

Merge two arrays into one array:

<?php
$a1=array("red","green");
$a2=array("blue","yellow");
print_r(array_merge($a1,$a2));
?>

Profile Image

Ejaz Bhatti01 Mar 2023 05:54

Its working..

thank you

Profile Image

shaheryar bhatti01 Mar 2023 05:58

@Ejaz Bhatti Welcome.