php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20534 unset fails under certain conditions
Submitted: 2002-11-20 23:54 UTC Modified: 2002-11-21 00:42 UTC
From: sputnik at reflexx dot net Assigned:
Status: Not a bug Package: Variables related
PHP Version: 4.2.3 OS: FreeBSD 4.6
Private report: No CVE-ID: None
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
38 + 40 = ?
Subscribe to this entry?

 
 [2002-11-20 23:54 UTC] sputnik at reflexx dot net
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.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-11-21 00:42 UTC] derick@php.net
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
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri May 09 09:01:26 2025 UTC