Skip to content

Instantly share code, notes, and snippets.

@rasoulvatanparast
Created June 28, 2019 13:10
Show Gist options
  • Save rasoulvatanparast/0c5ff330d1cda71fb3a8a159ff808565 to your computer and use it in GitHub Desktop.
Save rasoulvatanparast/0c5ff330d1cda71fb3a8a159ff808565 to your computer and use it in GitHub Desktop.
<?php
$x = 10;
function test(){
echo $GLOBALS['x'];
}
test();
/*
OUTPUT
10
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment