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

Return all the keys of an array

Tue Oct 28, 2008 1:17 am

Code:
<?php
   $state
["Delaware"] = "December 7, 1787";
   
$state["Pennsylvania"] = "December 12, 1787";
   
$state["New Jersey"] = "December 18, 1787";
   
$keys = array_keys($state);
   
print_r($keys);
   
// Array ( [0] => Delaware [1] => Pennsylvania [2] => New Jersey )
?>




Post a reply
  Related Posts  to : Return all the keys of an array
 Return all the values of an array using array_values     -  
 Return an array with elements in reverse order     -  
 Video for learning how to deal with registry keys     -  
 Video for learning how to deal with registry keys     -  
 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     -  

Topic Tags

PHP Arrays