From:             [EMAIL PROTECTED]
Operating system: Windows 2000
PHP version:      4.0.6
PHP Bug Type:     *Compile Issues
Bug description:  Failure to bind a variable to an object's method that returns a 
reference

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