Learning PHP
Advanced PHP
PHP Function Reference
PHP Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
PHP Function array_values()
Syntax
Definition and Usage
This function returns all the values from the input array and indexes numerically the array.
Paramters
Parameter | Description |
array | Required. Specifies an array. |
Example
Try out following example:
<?php
$array = array("a"=>"green", "b"=>"brown", "c"=>"blue", "red");
print_r(array_values($array));
?>
|
This will produce following result:
Array
(
[0] => green
[1] => brown
[2] => blue
[3] => red
)
|
|
|
|