RosettaCodeData/Task/Generic-swap/PHP/generic-swap.php

4 lines
62 B
PHP

function swap(&$a, &$b) {
list($a, $b) = array($b, $a);
}