array_values


]Podporované v PHP 4, PHP 5 

Syntax

array array_values ( array $input )

Popis

Príkaz jazyka PHP
array_values() returns all the values from the input array and indexes numerically the array.

Príklad

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

/*príklad vráti toto:
Array
(
    [0] => XL
    [1] => gold
)
*/


?>


Pozri aj

array_keys

]