<?php

function three($a) {
    $a = 3;
    return $a;
}

$n = 5;
print(three($n));
print($n);

?>