I ask myself on the utility of the global keyword:

Are there any reasons to prefer one method to another?

  • Security?
  • Performance?
  • Anything else?

Method 1:

function exempleConcat($str1, $str2)
{
  return $str1.$str2;
}

Method 2:

function exempleConcat()
{
  global $str1, $str2;
  return $str1.$str2;
}

When does it make sense to use global?

For me, it appears to be dangerous... but it may just be a leak of knowledge. I am interested for documented (e.g. with example of code, link to documentation...) technical reasons.

Thanks in advance!


Bounty

This is is a nice general question about the topic, I (@Gordon) am offering a Bounty to get some more additional answers. Whether your answer is in accordance with my own answer or a different view doesn't matter. Since the Global topic comes up every now and then, we could use a good "canonical" answer to link against.

link|improve this question

1  
have a look at this link : stackoverflow.com/questions/1557787 There's a lot of related articles on the bottom right side of this page – JohnP Mar 2 '11 at 10:29
It's not a direct answer to your question but please read this older SO question. – Ólafur Waage Mar 2 '11 at 10:29
1  
So, I can't read any pro-global keyword. 1) Why it's here. 2) Why people use it ? – Pascal Qyy Mar 5 '11 at 16:42
@G.Qyy Why is there goto? Why do people use it? They don't use it (I hope at least) :P – RepWhoringPeeHaa Jan 14 at 0:02
feedback

4 Answers

up vote 36 down vote accepted

Globals are evil

This is true for the global keyword as well as everything else that reaches from a local scope to the global scope (statics, singletons, registries, constants). You do not want to use them. A function call should not have to rely on anything outside, e.g.

function fn()
{
    global $foo;              // never ever use that
    $a = SOME_CONSTANT        // do not use that
    $b = Foo::SOME_CONSTANT;  // do not use that unless self::
    $c = $GLOBALS['foo'];     // incl. any other superglobal ($_GET, …)
    $d = Foo::bar();          // any static call, incl. Singletons and Registries
}

All of these will make your code depend on the outside. Which means, you have to know the full global state your application is in before you can reliably call any of these. The function cannot exist without that environment.

In addition, in case of hardcoded classnames, your function also cannot exist without that class being available. Reuse is severly hampered by that. So is unit-testing.

Also, your function signatures are lying when you couple to the global scope

function fn()

is a liar, because it claims I can call that function without passing anything to it. It is only when I look at the function body that I learn I have to set the environment into a certain state.

If your function requires arguments to run, make them explicit and pass them in:

function fn($arg1, $arg2)
{
    // do sth with $arguments
}

clearly conveys from the signature what it requires to be called. It is not dependent on the environment to be in a specific state. You dont have to do

$arg1 = 'foo';
$arg2 = 'bar';
fn();

Even worse, when you are changing globals inside your function, your code will quickly be completely incomprehensible, because your functions are having sideeffects all over the place.

In lack of a better example, consider

function fn()
{
    global $foo;
    echo $foo;     // side effect: echo'ing
    $foo = 'bar';  // side effect: changing
}

And then you do

$foo = 'foo';
fn(); // prints foo
fn(); // prints bar <-- WTF!!

There is no way to see that $foo got changed from these three lines. Why would calling the same function with the same arguments all of a sudden change it's output or change a value in the global state? A function should do X for a defined input Y. Always.

This gets even more severe when using OOP, because OOP is about encapsulation and by reaching out to the global scope, you are breaking encapsulation. All these Singletons and Registries you see in frameworks are code smells that should be removed in favor of Dependency Injection. Decouple your code.

More Resources:

link|improve this answer
3  
Why PHP implement such things? Is there an utility? I always surprised by dangerous implementations in PHP that a lot of people use every-time... It's hard form me to believe there are no logical reasons! – Pascal Qyy Mar 5 '11 at 16:40
4  
@mario: If you think it's deficient, post your own answer that you think would be better. – ircmaxell Mar 21 '11 at 16:28
1  
@mario: To be fair, I only vote on questions that I feel strongly about (up or down). Post your opinions, don't be scared about DVs. If you honestly have a differing opinion, or think this should be expanded upon or taken in a different direction, by all means do so. I'm honestly curious to see your thoughts on the subject. – ircmaxell Mar 21 '11 at 17:06
1  
@ircmaxell: Now here's the catch. I'm not in fact disagreeing with the recommendation. I'm objecting to the presentation and overgeneralizing. OPs comment here and another answer yesterday are indicative that the big fat headline isn't making newbies much better informed. They don't read beyond the bold. (there are no tanglibe arguments after that anyhow). And I'm sorry, but I'm assuming a big percentage of the upvoters here didn't either. – mario Mar 21 '11 at 17:13
1  
@bob no, it's a matter of pulling in (global keyword) vs pushing in (arguments). When you push in/inject dependencies, the function does not rely on the outside anymore. When you do fn(1) you dont have to have a variable holding 1 somewhere outside. But when you pull in global $one inside the function, you couple to the global scope and expect it to have a variable of that defined somewhere. The function is no longer independent then. As for validating/sanitizing: that's a different thing and unrelated to the global topic above. Feel free to drop by in the chat if you have more questions. – Gordon Mar 27 '11 at 10:51
show 3 more comments
feedback

Simply put there is rarely a reason to global and never a good one in modern PHP code IMHO. Especially if you're using PHP 5. And extra specially if you're develop Object Orientated code.

Globals negatively affect maintainability, readability and testability of code. Many uses of global can and should be replaced with Dependency Injection or simply passing the global object as a parameter.

function getCustomer($db, $id) {
    $row = $db->fetchRow('SELECT * FROM customer WHERE id = '.$db->quote($id));
    return $row;
}
link|improve this answer
feedback

The one big reason against global is that it means the function is dependent on another scope. This will get messy very quickly.

$str1 = 'foo';
$str2 = 'bar';
$str3 = exampleConcat();

vs.

$str = exampleConcat('foo', 'bar');

Requiring $str1 and $str2 to be set up in the calling scope for the function to work means you introduce unnecessary dependencies. You can't rename these variables in this scope anymore without renaming them in the function as well, and thereby also in all other scopes you're using this function. This soon devolves into chaos as you're trying to keep track of your variable names.

global is a bad pattern even for including global things such as $db resources. There will come the day when you want to rename $db but can't, because your whole application depends on the name.

Limiting and separating the scope of variables is essential for writing any halfway complex application.

link|improve this answer
The people in the PHP chat decided this answer should get the bounty, so here you are. – Gordon Mar 23 '11 at 17:02
@Gordon Why, thank you. :o) – deceze Mar 24 '11 at 2:35
feedback

It makes no sense to make a concat function using the global keyword.

It's used to access global variables such as a database object.

Example:

function getCustomer($id) {
  global $db;
  $row = $db->fetchRow('SELECT * FROM customer WHERE id = '.$db->quote($id));
  return $row;
}

It can be used as a variation on the Singleton pattern

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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