vote up 0 vote down star

Is it good practice to initialize a global variable in PHP? The snippet of code seems to work fine, but is it better to initialize (in a larger project, say for performance sake) the variable outside of a function, like in the second scratch of code?

if(isset($_POST["Return"]))Validate();
function Validate(){
    (!empty($_POST["From"])&&!empty($_POST["Body"]))?Send_Email():Fuss();
};
function Send_Email(){
    global $Alert;
    $Alert="Lorem Ipsum";
    mail("","",$_POST["Body"],"From:".$_POST["From"]);
};
function Fuss(){
    global $Alert;
    $Alert="Dolor Sit"
};

function Alert(){
    global $Alert;
    if(!is_null($Alert))echo $Alert;
};

Notice the variable $Alert above is not initialized.

$Alert;
if(isset($_POST["Return"]))Validate();
function Validate(){
    (!empty($_POST["From"])&&!empty($_POST["Body"]))?Send_Email():Fuss();
};
function Send_Email(){
    global $Alert;
    $Alert="Lorem Ipsum";
    mail("","",$_POST["Body"],"From:".$_POST["From"]);
};
function Fuss(){
    global $Alert;
    $Alert="Dolor Sit"
};

function Alert(){
    global $Alert;
    if(!is_null($Alert))echo $Alert;
};

Now notice it is.

I appreciate any answers! Thanks in advance, Jay

flag

50% accept rate

5 Answers

vote up 2 vote down

In the second example you are still not declaring the variable, the line

$alert;

does not assign $alert a value so it remains undeclared.

If you declare the variable first, you can access it more easily without generating notices:

$alert = '';

if ($alert) {
    //do something with alert
}
link|flag
vote up 2 vote down

Do not use global variables, are a bad parctice and won't be available in PHP6. If you need values available across pages/classes, why don't you create a enumeration class? See an example here: http://riccardotacconi.blogspot.com/2009/05/enumerator-class-in-php.html

Basicaly you include your class and you get the value in this way: QYourClass::Alert

link|flag
The value of a constant can't be set during runtime like a global by definition. Anyhow, thanks for your answer. – Jay Jul 24 at 9:05
vote up 1 vote down

Is it good practice to initialize a global variable in PHP?

In my opinion (and I'm not the only one thinking that), it is good practice to not use global variables.

You can find a couple of arguments here.

If you really need to use global variables, though, it's probably better to initialize them ; or use isset to determine if they've been.

link|flag
I need it to be global as Alert() is called each time the page loads, and if $Alert is null then no alert will be echoed in the page. – Jay Jul 23 at 11:28
vote up 0 vote down

Well, using a variable that has not been initialized will trigger a notice in php, so initializing variables is always better than not initializing them.

link|flag
First, thanks to everyone's fast reply! I don't get a notice no matter if the $Alert is there or not. So is the variable initialized when PHP sees it's first instance, global or otherwise (in the first snippet, ie: line 6)? – Jay Jul 23 at 11:24
You're probably not seeing the notices because you haven't turned them on, you can either alter your php.ini to enable them, or use this command: error_reporting(E_ALL); The default value for error_reporting tends to vary with the different version of PHP (I think!). But it's best to have it set to E_ALL, as you'll be more aware of your programming mistakes. – Vex Jul 23 at 11:43
As suggested I've appended the short scrap of code below what we've got already, even so I still see no errors! error_reporting(E_ALL); ini_set("display_errors",1); – Jay Jul 23 at 11:57
you have to put it above all your code. – smoove666 Jul 23 at 11:59
1  
also, error_reporting(E_ALL | E_STRICT) is the most verbose error level. – smoove666 Jul 23 at 12:00
show 5 more comments
vote up 0 vote down check

I don't think this is doable so I'm scrapping it. Global variables are being dropped in PHP6 and a Constant, by definition can't have it's value changed. Thanks to everyone, I appreciate each answer and all who contributed.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.