Hello All -

Just wondering what it would take to get this functionality in PHP:

$this->getFooObject($bar)->getFoo()

Right now, AFAICT, you have to:

$var =& $this->getFooObject($bar);
$var2 = $var->getFoo();

Is that a difficult thing to add in? Who do I have to bribe?

Thanks,

Tim

-- 
Founder - PHPBuilder.com / Geocrawler.com
Lead Developer - SourceForge
VA Linux Systems

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to