经测试代码如下:
/**
* 恢复数组的key为数字序列
*
* @param
* @arrange (512.笔记) jb51.cc
**/
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)
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528921.html