<?phpfunction inc(& $b) { $b++;}$a = 1;inc($a);echo $a;?>
<?phpfunction & get_data() { $data = "Hello World"; return $data;}$foo = & get_data();?>