Q:

How to add elements to the end of an array in PHP

0

How to add elements to the end of an array in PHP

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Use the PHP array_push() function

You can use the PHP array_push() function to insert one or more elements or values at the end of an array. Let's try out an example and see how this function works:

<?php
$skills = array("HTML5", "CSS3", "JavaScript");
 
// Append array with new items
array_push($skills, "jQuery", "PHP");
print_r($skills);
?>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP  and MySQL Frequently Asked Questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to merge two or more arrays into one array in ... >>
<< How to add elements to the beginning of an array i...