php恢复数组的key为数字序列
例子,php把数组的key值恢复成类似于0,1,2,3,4,5...数字序列。
代码:
复制代码 代码示例:
function restore_array($arr){
if (!is_array($arr)){ return $arr; }
$c = 0; $new = array();
while (list($key, $value) = each($arr)){
if (is_array($value)){
$new[$c] = restore_array($value);
}
else { $new[$c] = $value; }
$c++;
}
return $new;
}
使用方法:
restore_array(array('a' => 1, 'b' => 2)); --> returns array(0 => 1, 1 => 2)