PHP renvoie plus d'une valeur

// Function to swap two numbers 
function swap( $x, $y ) {  
    return array( $y, $x ); 
}  
Homely Hamerkop