array_values

(PHP 4, PHP 5, PHP 7)

array_valuesReturn all the values of an array

Descrierea

array_values ( array $array ) : array

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

Parametri

array

The array.

Valorile întoarse

Returns an indexed array of values.

Exemple

Example #1 array_values() example

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

Exemplul de mai sus va afișa:

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

A se vedea și

  • array_keys() - Return all the keys or a subset of the keys of an array
  • array_combine() - Creates an array by using one array for keys and another for its values