Hi,

2011/6/5 Zeev Suraski <z...@zend.com>

> > -----Original Message-----
> > class Hello {
> >    public function world($x) {
> >       echo "Hello, $x\n"; return $this;
> >    }
> > }
> >
> > $f = array(new Hello, 'foo');
> > $f();
>
> Am I the only one who doesn't understand what this one is supposed to do..?
>
>
If you are refering to the 'foo' method and the lack of arg, it's was a
typo...

The right one:

<?php

class Hello {
    public function world($x) {
      echo "Hello, $x\n"; return $this;
    }
}

$f = array(new Hello, 'world');
$f('devs');


-- 
Regards,
Felipe Pena

Reply via email to