/**
* 将数组的key恢复成数字序列
* @param $arr
* @return array
* @date 2020/8/6
*/
function restore_array($arr){
if (!is_array($arr)) {
return $arr;
}
$c = 0; $new = array();
foreach ($arr as $key => $value) {
if (is_array($value)){
$new[$c] = restore_array($value);
} else {
$new[$c] = $value;
}
$c++;
}
return $new;
}





![战神引擎传奇手游【1.76盛战传奇免授权版[摸摸登陆器]】最新整理Win系复古服务端+安卓苹果双端+GM授权物品后台+详细搭建教程](https://cdn.jxasp.com:9143/image/20251106/1B4E8594B3BEB90E8601D63A8A39CB0B.jpg)













