<?php
class Test {
    public $prop;
    function __construct() {
        $this->prop = $this->retref();
    }
    function &retref() {
        return str_repeat("a", 5);
    }
}
$o = new Test();
var_dump($o);
?>