Does Zend_Registry live until next user request?
Ben zend projede index.php dosyasının sonunda bu kodu koymak: (Mevcut zend web sitesi içinde kod)
Trial code:
//end of index.php file
Bootstrap::run();
//trial for find out the life of Zend_Registry.
$registry = Zend_Registry::getInstance();
if (!isset($registry['index1'])) {
Zend_Registry::set('index1', 'value7');
echo '<h1>Zend_Registry was unset</h1>';
} else {
echo '<h1>Zend_Registry was set</h1>';
}
Ana sayfa her tıklama sonra sonuçları:
Zend_Registry was unset
Teşekkürler