php man page for array_values

Query: array_values

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

ARRAY_VALUES(3) 							 1							   ARRAY_VALUES(3)

array_values - Return all the values of an array

SYNOPSIS
array array_values (array $array)
DESCRIPTION
array_values(3) returns all the values from the $array and indexes the array numerically.
PARAMETERS
o $array - The array.
RETURN VALUES
Returns an indexed array of values.
EXAMPLES
Example #1 array_values(3) 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(3). PHP Documentation Group ARRAY_VALUES(3)
Related Man Pages
array_shift(3) - php
array_pop(3) - php
array_flip(3) - php
array_intersect(3) - php
array_product(3) - php
Similar Topics in the Unix Linux Community
array values in a command
printing all array values using dbx 7.2.1
incorrect array values
Compare array values
Attach variable to array values