Set WeberTrivia.com to be my default homepage.   Suggest a Question                                               

Suggest A Question : :  Frequently Asked Questions : :  Search : :  Relevant Manuals : : 
PHP Questions : :  Linux Questions : :  MySQL Questions : : 
home  [ Login ] 

Return all the values of an array

array_values

(PHP 4, PHP 5)

array_valuesReturn all the values of an array

Description

array array_values ( array $input )

array_values() returns all the values from the input array and indexes numerically the array.

Parameters

input

The array.

Return Values

Returns an indexed array of values.

Examples

Example #1 array_values() example

<?php
$array 
= array("size" => "XL""color" => "gold");
print_r(array_values($array));
?>

The above example will output:

 Array (     [0] => XL     [1] => gold ) 

See Also

  • array_keys() - Return all the keys or a subset of the keys of an array


Who's Online
Guest Users: 10
Google
Web
WeberTrivia
WeberDev
WeberForums

PHP General