ID: 9587
Updated by: sebastian
Reported By: [EMAIL PROTECTED]
Old Status: Analyzed
Status: Closed
Bug Type: Class/Object related
Operating System: Linux/Debian(Woody)
PHP Version: 4.0.4pl1
New Comment:

Not a bug, closing.

Previous Comments:
------------------------------------------------------------------------

[2001-03-08 12:43:31] [EMAIL PROTECTED]

Yes, this is a known problem. 

------------------------------------------------------------------------

[2001-03-06 15:31:04] [EMAIL PROTECTED]

You cannot do the following:

obj->method()->method2();

Mini example:
class Foo{
 var $obj;
  
 setObj( &$obj ) {
   $this->obj =& $obj;
 }

 &getObj() {
   return $this->obj;
}

 hello() {
   print "hi\n";
 }
}

$a = new Foo;
$b = new Foo;
$b->setObj( $a );

$a->getObj()->hello();
// Doesn't work

In fact, this doesn't work either:
function foob() {
  global $a;
  return $a;
}

foo()->hello();

In addition, anything that hands objects back doesn't work
right.  You can't chain certain things, like new commands.

All in all, the objects are rather inflexable.

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=9587&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