How do I add to the beginning of an array and find the
number of elements in it?
Answer / jude jeevanraj.p
To do this, you will want to use the array_unshift function
which works like this.
<?php
$values = array(2,3,4,5,6,7,8,9,10);
$elements = array_unshift($values,1);
echo "Number of elements: $elements \n\n";
print_r($values);
?>
Here's the output:
Number of elements: 10
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
[5] => 6
[6] => 7
[7] => 8
[8] => 9
[9] => 10
)
| Is This Answer Correct ? | 8 Yes | 0 No |
What is the difference between Split and Explode in PHP?
What are the features of php?
What are new features in php 7?
In php how can you jump in to and out of "php mode"?
how long a default session stay in php?
Tell me what are the functions to be used to get the image's properties (size, width and height)?
How to create a text file in PHP?
Is it possible to use com component in php?
Who created numbers?
what is the use of include_once in php?
Tell me how to set a page as a home page in a php based site?
What is a php certification?