What's wrong here?
<?php
    $var 
=& strlen("this is a string");
?>
Or here?
<?php
    
function &create_array($count)
    {
        
$len range(0$count);
        return &
$len;
    }
    
$array create_array(50000);
?>