Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do I add to the beginning of an array and find the
number of elements in it?



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

Post New Answer

More PHP Interview Questions

Tell me how can we change the maximum size of the files to be uploaded?

0 Answers  


What is php trait?

0 Answers  


How can you parse files that were not ending with .php by using Apache?

1 Answers  


How to find current date and time?

0 Answers  


What are the advantages of stored procedures, triggers, indexes in php?

0 Answers  


Can the value of a constant change during the script's execution?

0 Answers  


What are the benefits of using queries?

0 Answers  


Explain the types of string comparision function in PHP

0 Answers  


How would you open a directory for reading in php?

0 Answers  


What is == and === in php?

0 Answers  


What is a class in php programing?

0 Answers  


What is the difference between php 5 and php 7?

0 Answers  


Categories