Syntax
array_values ( $array ); |
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 ) |
No comments:
Post a Comment