php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #16613 Function called from class treats GLOBAL vars in different way...
Submitted: 2002-04-15 05:53 UTC Modified: 2002-04-15 19:50 UTC
From: daniel at webdevelopers dot cz Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 4.1.2 OS: Windows 2000, Windows XP
Private report: No CVE-ID: None
 [2002-04-15 05:53 UTC] daniel at webdevelopers dot cz
There is the line marked with '#*' in the following script. One line up you will find other line that should make the exactly same action (I think). Try to comment this line and uncomment line with '#*'. The output will differ. Why?

--- SCRIPT: START ---
<PRE><?php

class test {
	function test() {
		extfunc($this);
	}
}
#__________________________________________________________________________________________________

function extfunc(&$ref) {
global $obj;
	$GLOBALS["obj"]=&$ref; # This is the same as '$obj=&$ref;'. Isn't it?
	#* $obj=&$ref;
}

#===========================================================
$test=new test();
var_dump($obj);

?></PRE>
--- SCRIPT: END ---

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-04-15 06:27 UTC] daniel at webdevelopers dot cz
Duplicate submission. Sorry.
 [2002-04-15 19:50 UTC] sniper@php.net
Please do not submit the same bug more than once.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 14:01:29 2024 UTC