Reply to Re: [PHP] How to start a global variable within a function?
Posted by "Wong HoWang" on 10/04/51 11:23
but, I mean I haven't start the global variable BEFORE the function is
called...
"Jasper Bryant-Greene" <jasper@bryant-greene.name>
wrote:42F72157.2070408@bryant-greene.name...
> <?php
> $someGlobalVariable = 'foo';
>
> function myFunction() {
> global $someGlobalVariable;
>
> // do stuff with $someGlobalVariable
> }
> ?>
>
> Jasper
>
> Wong HoWang wrote:
>> as title, how to start a global variable within a function?