> > Now mimicking $_SESSION functionality is another story, eww,
> maybe that's
> > going too far.
>
> This can be done by a register_shutdown_function() who registers
> all the vars in $_SESSION, using session_register. That's all :))
> If I can understand this new feature correctly (I never used it).

Using register_shutdown_function is unnecessary:

<?php

session_start();
if(ini_get('register_globals') AND !isset($session_global_var)){
        $session_global_var = array();
}

session_register('session_global_var');

if(ini_get('register_globals')){
        $SESSION =& $session_global_var;
}else{
        $SESSION =& $HTTP_SESSION_VARS['session_global_var'];
}

?>

Use the above code and you will be able to add/remove anything from the
$SESSION array and it will be reflected in the next request.

--
Richard Heyes
"If you have any trouble sounding condescending,
find a Unix user to show you how it's done." - Scott Adams


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to