2012年7月12日 星期四

兩行 Code 就 PHP 將 Array 行列互換


function transpose($array) {
array_unshift($array, null);
return call_user_func_array('array_map', $array);
}


出處:http://stackoverflow.com/questions/797251/transposing-multidimensional-arrays-in-php


0 意見: