On Fri, Nov 26, 2010 at 2:36 PM, Felipe Pena <felipe...@gmail.com> wrote:

> Hi all,
> I'm here again to presents another proposal, which adds support for
> instantiating a class and calling its methods and accessing its properties
> on same command.
>
> Example:
>
> <?php
>
> class bar {
>  public $x = 'PHP';
> }
>
> class foo extends bar {
>  public function bar() {
>    return $this;
>  }
> }
>
> var_dump(new foo()->bar()->x); // string(3) "PHP"
>
> ?>
>
> Other examples which describes the feature at
> http://wiki.php.net/rfc/instance-method-call
>
> Thoughts?
>
> --
> Regards,
> Felipe Pena
>

Felipe, you're on a roll :)  It's great!

Adam

-- 
Nephtali:  PHP web framework that functions beautifully
http://nephtaliproject.com

Reply via email to