Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Return all the values of an array using array_values

Tue Oct 28, 2008 1:33 am

Code:

<?php
   $population
= array("Ohio" => "11,421,267", "Iowa" => "2,936,760");
   
$popvalues = array_values($population);
   
print_r($popvalues);
   
// Array ( [0] => 11,421,267 [1] => 2,936,760 )
?>




Post a reply
  Related Posts  to : Return all the values of an array using array_values
 Return all the keys of an array     -  
 Return an array with elements in reverse order     -  
 Calculate the sum of values in an array     -  
 Function return more than one value     -  
 readLine() return value     -  
 return false; questions     -  
 what will return by void main()     -  
 Return words count in a string     -  
 Preventing backspace key from return back     -  
 read() return when it has reached the end of a file     -  

Topic Tags

PHP Arrays