🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

PHP array_push

Reading time 1 min
Published Aug 14, 2017
Updated Oct 10, 2019

PHP array push: Main Tips

  • PHP array_push() function is used to insert new elements into the end of an array and get the updated number of array elements.
  • You may add as many values as you need.
  • Your added elements will always have numeric keys, even if the array itself has string keys.
  • PHP array push function has been introduced in PHP 4.

array_push() Explained

This function is used to insert elements into the end of an array. Here is a simple example to get you started:

Example
<?php
  $z = ['me','you', 'he'];
  array_push($z, 'she', 'it');
  print_r($z);
?>

DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

Learn Correct Syntax

To have PHP array push function executed correctly, you have to follow this syntax:

array_push(array,value1,value2...);

In the table below, the parameters used in the PHP array push function are explained one by one:

Parameter Description
array Necessary. Defines an array.
value1 Necessary. Defines the value to add.
value2 Optional. Defines the next values to add.

Example

Look at the code below. You can see an array that contains string keys. Let's see how two new values are added at the end of it using PHP array push function:

Example
<?php
  $z = [
    'Drago' => 'blue',
    'Rex' => 'brown'
  ];
  array_push($z, 'black', 'purple');
  print_r($z);
?>