Russian Ukraine English
Catalog RSS


array_values

(PHP 4 )

array_values -- Return all the values of an array

Description

array array_values (array input)

Array_values() returns all the values from the input array.

Example 1. Array_values() example


$array = array ("size" => "XL", "color" => "gold"); array_values ($array);    // returns array ("XL", "gold")       

Note: This function was added to PHP 4, below is an implementation for those still using PHP 3.

Example 2. Implementation of array_values() for PHP 3 users


function array_values ($arr) {     $t = array();     while (list($k, $v) = each ($arr)) {         $t[] = $v;         return $t;     } }        

Led