Date: 06/29/01
- Next message: Zak Greant: "Re: [PHP-DEV] Assert callback handlers"
- Previous message: sniper <email protected>: "[PHP-DEV] Bug #11787 Updated: Cannot change Icon Font in display properties while PHP is loaded"
- Next in thread: Cynic: "Re: [PHP-DEV] 'Global' variable scope."
- Reply: Cynic: "Re: [PHP-DEV] 'Global' variable scope."
- Reply: Zeev Suraski: "Re: [PHP-DEV] 'Global' variable scope."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi, all.
I'm just wondering why a variable defined within a function is not available
as a global to functions called from the same scope. There's probably a
really good reason for this, but I'm not sure I know what it is.
Feel free to educate me.
Ta muchly,
JP.
--- Code example follows ---
<?PHP
// Simple global variable scope test.
Function startTests()
{
$G_test = "Hello, World.";
globalTest();
}
Function globalTest()
{
global $G_test;
if (isset($G_test))
{
echo ("Global variable 'test' - value:
'<B>".$G_test."</B>'.<P>\n");
}
else echo ("Global variable 'test' is not set.<P>\n");
}
?>
------------------------------------------------------------------
John Parker email: jparker <email protected>
Internet Project Manager/Software Engineer web:www.itchannel.net
itCHANNEL International Ltd. tel: +44 (0) 1202 291939
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Zak Greant: "Re: [PHP-DEV] Assert callback handlers"
- Previous message: sniper <email protected>: "[PHP-DEV] Bug #11787 Updated: Cannot change Icon Font in display properties while PHP is loaded"
- Next in thread: Cynic: "Re: [PHP-DEV] 'Global' variable scope."
- Reply: Cynic: "Re: [PHP-DEV] 'Global' variable scope."
- Reply: Zeev Suraski: "Re: [PHP-DEV] 'Global' variable scope."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

