Returning by Reference
function &return_fish( ) { $fish = "Wanda"; return $fish; } $fish_ref =& return_fish( );