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

How to get the DNS servers of a domain name?

1 Answers   Life Infotech,


What is explode() in php?

0 Answers  


Tell me how can you pass a variable by reference?

0 Answers  


Distinguish between urlencode and urldecode?

0 Answers  


Explain what does the expression exception::__tostring means?

0 Answers  


What's the best method for sanitizing user input with php?

0 Answers  


What can php do?

0 Answers  


What changes to done in PHP.ini file for file uploading?

2 Answers  


Which functions are used to remove whitespaces from the string?

0 Answers  


What does csrf token mismatch mean?

0 Answers  


What is the use of trim function in php?

0 Answers  


What is the importance of php?

0 Answers  


Categories