Skip to content

Instantly share code, notes, and snippets.

@rasoulvatanparast
Created June 28, 2019 15:08
Show Gist options
  • Save rasoulvatanparast/7121beb808adb630107cb209f2632181 to your computer and use it in GitHub Desktop.
Save rasoulvatanparast/7121beb808adb630107cb209f2632181 to your computer and use it in GitHub Desktop.
<?php
$x = 10;
function test(){
global $x;
echo $x;
}
echo $x;
test();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment