ID: 20534 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: Variables related Operating System: FreeBSD 4.6 PHP Version: 4.2.3 New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php Previous Comments: ------------------------------------------------------------------------ [2002-11-20 23:54:09] [EMAIL PROTECTED] global $myvar; unset ($myvar); // works. ------------------- // ($unsetvar was set to "foo" somewhere in the script, and is global global $unsetvar; echo $unsetvar; // => "foo" if($unsetvar == "foo") { echo "unsetting myvar"; global $myvar; unset($myvar); } // this will echo "unsetting myvar" but NOT unset the variable! // it seems the bug occurs when trying to use unset inside a structure that is doing some kind of test on a variable brought into global scope (even though the variable has the orrect value and the if statement succeeds!). It's not the if statement, because if(1) works. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20534&edit=1