Значение экстракта массива PHP


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

Matteoweb