From: [EMAIL PROTECTED]
Operating system: Debian 2.2 testing/unstable 2.2.18
PHP version: 4.0.4pl1
PHP Bug Type: Class/Object related
Bug description: Variable member value gets lost from object during use
Also running Zend optimiser 1.0. Removing the optimiser makes no difference to the
outcome.
The problem should hopefully be outlined in the cut and paste of the code below. There
are no other operations occurring on any of the instantiated objects at the time:
-----------------------------
$crList = $this -> getLinkedCRs (); // method returns an array of instantiated
objects (CRRecord class).
foreach ($crList as $cr)
{
if (!$cr -> okToClose ()) // method returns a Boolean, and sets a Boolean data
member in the cr object.
{
return false;
}
}
foreach ($crList as $cr)
{
// Previously set Boolean data member now appears to no longer be set.
$cr -> okToClose (); // Inserting the method call in again here ensures that the
following method call works.
$cr -> close ($changeBy); // method operates only if the previously set Boolean data
member is true.
}
--
Edit Bug report at: http://bugs.php.net/?id=9643&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]