The function returns the modified Array. <?php function array_move_elem($array, $from, $to) { if ($from == $to) { return $array; } $c = count($array);
確定! 回上一頁