Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Functions Function Returns and More PHP Closures

Florios Demosten
Florios Demosten
1,617 Points

global vs use ()

Can some one explain why you would use use() over global?

In closure construct, 'use' keyword takes the current value of variable which is at the time of function definition. Even if this variable's value changes before the closure call, it still maintains the old value. Whereas, with 'global' keyword, function gets the latest value of variable.

<?php

$num = 0; // value of $num before closure

$closure = function() use($num){ 
  return $num; // current value of $num
};

$num = 2; // value of $num after closure

echo $closure(); // displays 0 even if $num changed to 2 before call

function display(){
  global $num; // latest value of $num
  return $num;
}

$num = 6;

echo display(); // displays 6 as $num changed to 6 before call