Zend_Registry sonraki kullanıcı isteği kadar mı yaşıyor?

0 Cevap php

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

0 Cevap