php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1971 Problem with unsetting global-variables
Submitted: 1999-08-05 10:45 UTC Modified: 1999-08-07 13:11 UTC
From: jeress at iname dot com Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 4.0 Beta 1 OS: Linux (Debian potato), glibc2.1
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jeress at iname dot com
New email:
PHP Version: OS:

 

 [1999-08-05 10:45 UTC] jeress at iname dot com
The following returns 2 under PHP3 and 1 under PHP4:
----
<html>
<body>
<?php
$tv = 1;

function test1()
{
global $tv; unset($tv); $tv = 2;
}

function test2()
{
global $tv; echo("should be 2: $tv");
}

test1();
test2();
?>
</body>
</html>
---
I don't think this is a compile/module problem (compiled with mysql, nothing else that really matters).

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-08-07 13:11 UTC] zeev at cvs dot php dot net
This is an undocumented incompatiblity to an undocumented behavior.

in PHP 4.0 - with the notion of references - the behavior of
unset() is extremely clear - only the symbol you unset() is unset.
In this case, $tv is a local variable that points to the global
variable with the same name - so unsetting it only unsets the
local $tv.  If you want to unset the actual global $tv, you should
use unset($GLOBALS["tv"])

 [2021-03-04 22:29 UTC] armcewen at shaw dot ca
So, would repeating the global statement, before re-assigning to the variable change this behaviour?
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Jan 21 23:01:29 2025 UTC