php เพิ่มข้อมูลเข้าไปใน Array ด้วย array_push()


<?PHP
// php เพิ่มข้อมูลเข้าไปใน Array ด้วย array_push()

// ตัวอย่างที่ 1
// ตัวแปร $social_array เก็บค่า Array ที่เป็นชื่อ Social Network
$social_array = array('Facebook', 'Twitter', 'GooglePlus');

// ใช้ Function array_push() ในการเพิ่มค่า Flickr เข้าไปในตัวแปร Array  $social_array
array_push($social_array,'Flickr');

// ใช้คำสั่ง print_r() แสดงค่าจำนวน Array ทั้งหมดออกมา
print_r($social_array);

// ผลลัพพ์

// Array ( [0] => Facebook [1] => Twitter [2] => GooglePlus [3] => Flickr
?>