You can use the PHP array_unshift() function to insert one or more elements or values to the beginning of an array. Let's check out an example to see how it works:
<?php
$skills = array("HTML5", "CSS3", "JavaScript");
// Prepend array with new items
array_unshift($skills, "Illustrator", "Photoshop");
print_r($skills);
?>
Use the PHP
array_unshift()functionYou can use the PHP
need an explanation for this answer? contact us directly to get an explanation for this answerarray_unshift()function to insert one or more elements or values to the beginning of an array. Let's check out an example to see how it works: