Codice PHP:
function scambio($x$y$b) {
return array(
$y,$b,$x);
}

//es.
list ($uno,$due,$tre) = scambio(10,20,30);