I'm noticing some slightly unexpected behaviour using __destruct to write data using Zend_Session_Namespace in PHP 5.3:
public function __destruct(){
$this->getSession()->data = $this->data;
}
// ....
private function getSession()
{
if (! self::$zendSession) {
// this next line is fine because the object is a singleton
self::$zendSession = new Zend_Session_Namespace(self::SESSION_NAMESPACE);
}
return(self::$zendSession);
}
The destructor is getting called, but the data isn't getting written. However, if I implicitly call the destruct after the object has had all the necessary operations done on it, and force destruction before script termination, the data is written fine, but I'd rather not do this.
I imagine it has something to do with this bug: http://bugs.php.net/29032 (bug seems a bit old to me), and on the face of it the fix looks good (register __destruct as shut-down function, which is called before $_SESSION is unavailable), but wouldn't the destructor get called twice (once through the register_shutdown_function and once automatically?
Surely writing the odd bit of object data to session on shutdown is a thing that has been solved? What do people do when this is required?
(OSX 10.6.6, Apache 2.2.15 (Unix), PHP 5.3.3, Zend Framework 1.7.2)
zend_controller_action->_redirect(), but I didn't want to make the post too awkward to understand. Essentially, I noticed that if there is a chain of requests, usingzend_controller_action->_redirect()to forward to the next one causes the destructor to exit on the line where it referencesZend_Session_Namespace. For the last request in the chain (wherezend_controller_action->_redirect()is not called, the destructor completes normally, and the data is written to session. – sennett Feb 24 '11 at 9:30