|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-22 16:59 UTC] derick@php.net
[2003-06-22 17:02 UTC] spagmoid at yahoo dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 11:00:01 2025 UTC |
Description: ------------ globals aren't working right - in repro, no value is echoed Reproduce code: --------------- Wang(); function Wang() { global $A, $B; $A = 3; $B = &$A; // should work, doesn't // $GLOBALS["B"] = &$A; // works Chung(); } function Chung() { global $A, $B; echo $B; }