From:             [EMAIL PROTECTED]
Operating system: linux
PHP version:      4.0.4
PHP Bug Type:     Class/Object related
Bug description:  $foo->getbar()->getfoobar()->method()

Hi there.

It would imho be useful to be abeled to code
$foo->getbar()->getfoobar()->method();
instead of having to save each return value into a variable like:
$bar = $foo->getbar();
$foobar = $bar->getfoobar();
$foobar->method();

Thanx.


-- 
Edit Bug report at: http://bugs.php.net/?id=8817&edit=1



-- 
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