Skip to content

Instantly share code, notes, and snippets.

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