Skip to content

Instantly share code, notes, and snippets.

@klang
Created June 1, 2011 06:21
Show Gist options
  • Save klang/1001873 to your computer and use it in GitHub Desktop.
Save klang/1001873 to your computer and use it in GitHub Desktop.
wierd scope rules in php
<?php
function test() {
global $data;
var_dump($data);
}
test();
$data = array(1,2,3);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment