function test(&val){return $val;}
$test = "hello";function myFun(&$val){$val = "hello world";return $val;}echo myFun(&$test); //hello worldecho $test; //hello world