Contents
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);
?>
Pros Main Features
- 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
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
Pros Main Features
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
Pros Main Features
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified 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);
?>