PHP 8.5.0 Alpha 1 available for testing

Voting

: min(zero, nine)?
(Example: nine)

The Note You're Voting On

andre at twg dot com dot au
21 years ago
Only This works with register_globals being 'ON'.

unset( $_SESSION['variable'] );

The above will not work with register_globals turned on (will only work outside of a function).

$variable = $_SESSION['variable'];
unset( $_SESSION['variable'], $variable );

The above will work with register_globals on & inside a function

<< Back to user notes page

To Top