array_values()转换为数字索引

转载至 http://www.wandaguoji.net/html/article_article/472.html


array_values() 返回 input 数组中所有的值并给其建立数字索引,数字索引也就是非序列化数组,关于什么是序列化数组大家可以搜索一下看看。

函数名:array_values()
调用方式:array_values ( $array )

参数说明:
$array 是数组格式,本函数返回的结果也是数组格式。

实例:

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

以上例程会输出:
Array
(
[0] => XL
[1] => gold
)


你可能感兴趣的:(Web,转换,数字索引,array_values())