php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #16609 Function called from class treats GLOBAL vars in different way...
Submitted: 2002-04-15 05:37 UTC Modified: 2002-04-15 19:48 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
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: daniel at webdevelopers dot cz
New email:
PHP Version: OS:

 

 [2002-04-15 05:37 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;
	if (is_object($ref)) {
		$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

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-04-15 06:26 UTC] daniel at webdevelopers dot cz
Duplicate submission. Sorry.
 [2002-04-15 19:48 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: Sun Dec 22 01:01:30 2024 UTC