I am writing a Zend module. I have implemented this 2 functions:
PHP_RINIT_FUNCTION
PHP_RSHUTDOWN_FUNCTION
The first one in called when a request is made. The second is called for the response. I want to keep informations between the 2 functions. I have tried to create a global variable but this variable is shared for all the PHP module. So other requests car interfere with it.
How can i store information into variables between thoses functions. The scope of those variables is the life of ONE php request