<?php
|
|
function foo (&$arg) {
|
|
$arg = 'something else';
|
|
}
|
|
$baz = 'something';
|
|
foo($baz);
|
|
print $baz . "\n";
|