array_values() 函数用于返回数组中所有的值,并返回一个包含数组中所有值的新数组。
语法:
array_values(array)
参数:
示例:
<?php $colors = array("red", "green", "blue"); print_r(array_values($colors)); ?>
输出:
Array ( [0] => red [1] => green [2] => blue )