PHP expert |
|
Grayen schreef: Dat eeuwig kan je toch instellen in Zend_Session, die staat dacht ik standaard op twee weken. Maar ik gebruik het zelf niet dus weet niet of dat wel de tijd is die aangeeft hoelang de sessie blijft leven, maar dacht van wel. Waarschijnlijk kan stijn1989 je wel verder helpen.
en ik dan niet ?
<?php
require_once 'Zend/Session/Namespace.php';
$s = new Zend_Session_Namespace('expireAll');
$s->a = 'apple';
$s->p = 'pear';
$s->o = 'orange';
$s->setExpirationSeconds(5, 'a'); // expire only the key "a" in 5 seconds
// expire entire namespace in 5 "hops"
$s->setExpirationHops(5);
$s->setExpirationSeconds(60);
// The "expireAll" namespace will be marked "expired" on
// the first request received after 60 seconds have elapsed,
// or in 5 hops, whichever happens first.
<?php require_once 'Zend/Session/Namespace.php'; $s = new Zend_Session_Namespace('expireAll'); $s->a = 'apple'; $s->p = 'pear'; $s->o = 'orange'; $s->setExpirationSeconds(5, 'a'); // expire only the key "a" in 5 seconds // expire entire namespace in 5 "hops" $s->setExpirationHops(5); $s->setExpirationSeconds(60); // The "expireAll" namespace will be marked "expired" on // the first request received after 60 seconds have elapsed, // or in 5 hops, whichever happens first.
dit zal je wel verder helpen |