ID: 12172
Updated by: yohgaki
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: Scripting Engine problem
Operating System: Windows 2000
PHP Version: 4.0.6
New Comment:

This is not a bug....
Referece to a function cannot be a LVALUE.



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

[2001-07-14 21:45:30] [EMAIL PROTECTED]

The following line will give a compilation error:

$arr = array( $stuff, &$this->refAll() );

refAll() is a method of the class that returnes a reference.

This work around works:

$ref = &$this->refAll();
$this->stack[] = array( $stuff, &$ref );

But i think that the one line solution should work too.

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



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