$arr = array(1,4,2,8,4,0); $temp_arr = array(); foreach($arr as $index => $row){ $temp_arr[] = array_sum($arr) - $arr[$index]; } ...
確定! 回上一頁