References
60/76
Connection Handling
Returning References
References are not pointers!
<?php
$foo
=
'Hello'
;
$bar
=
'World'
;
?>
<?php
$bar
= &
$foo
;
?>