Dean C
11-12-2005, 05:49 PM
I'm trying to debug one of my plugins and see why it's outputting an error. The obvious thing would be to output the variables and check they are all there right?
Try putting this in global_complete:
$var = 'moo'; function moo() { global $var; echo $var; } moo();
Nothing is output. However, if you put this in there:
$var = 'moo'; function moo() { global $var; echo $var; } moo(); echo 'test';
It'll output 'test'. Am I missing something here ;)?
Try putting this in global_complete:
$var = 'moo'; function moo() { global $var; echo $var; } moo();
Nothing is output. However, if you put this in there:
$var = 'moo'; function moo() { global $var; echo $var; } moo(); echo 'test';
It'll output 'test'. Am I missing something here ;)?