function array_values_recursive($arr) { foreach ($arr as $key => $value) { if(is_array($value)) { $arr[$key] = array_values($value); ...
確定! 回上一頁