Jay,

"global $a, $b, $c" is used for bringing global variables INTO the scope of the function... what I'm after is a way of making localised variables (in function) available outside of the function.

Justin


On 24/08/2004, at 1:38 AM, Jay Blanchard wrote:

[snip]
Is there a quicker way to globalise something other than:

$a = 'foo';
$b = 'bah';
...
$GLOBALS['a'] = $a;
$GLOBALS['b'] = $b;

??

I was hoping for something like

$a = 'foo';
$b = 'bah';
...
makeGlobal('a','b') /*or*/ makeGlobal($a,$b);
[/snip]

According to http://us3.php.net/language.variables.scope you could do
something like

global $a, $b, $c, ...;

--- Justin French http://indent.com.au

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to