Why the heck does this blow up my apache? Am I doing something wrong here or is this some bug.
<?
session_start();
unset($HTTP_SESSION_VARS);
?>
or same with this
<?
session_start();
unset($_SESSION);
?>
but this does not blow it up.
<?
session_start();
session_unset();
?>
If you look in the manual PHP manual here
http://www.php.net/manual/en/function.session-unset.php
there is a NOTE stating the following
Note: If $SESSION (or $HTTP_SESSION_VARS for PHP 4.0.6 or less) is used, use unset() to unregister session variable. i.e. unset($SESSION);
Apache basically crashes here
szAppName : Apache.exe szAppVer : 0.0.0.0 szModName : php4ts.dll
szModVer : 0.0.0.0 offset : 000a9618
Anyway this is on WinXP Pro, Apache/1.3.23 (Win32) PHP/4.1.1
Can someone running a windows setup try this and let me knoe it it is the code, php config, or just a php bug.
Thanks a bunch