<?php $array = array("size" => "XL", "color" => "gold"); print_r(array_values($array)); ?> Array ( [0] => XL [1] => gold )