ต่อ Array PHP ด้วย array_merge บทความนี้สอนใช้คำสั่ง array_merge เพื่อต่อ หรือรวม array 2 ชุดเข้าด้วยกัน เป็น array ชุดเดียวของภาษา PHP พร้อมแสดงค่า array ด้วย print_r สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง ต่อ Array PHP ด้วย array_merge
<?php
$color1 = array("red", "green");
$color2 = array("blue", "black");
$colors = array_merge( $color1, $color2 );
print_r( $colors );
?>
ผลลัพธ์
Array ( [0] => red [1] => green [2] => blue [3] => black )
ต่อ Array PHP จากตัวอย่างสร้าง array 2 ตัว คือ color1 และ color2 จากนั้นเขียน array_merge( $color1, $color2 ) คือต่อ หรือรวม array ทั้ง 2 เข้าด้วยกันเก็บผลลัพธ์ไว้ที่ตัวแปร colors สุดท้ายใช้คำสั่ง print_r แสดงค่าตัวแปร array ออกสู่หน้าจอ