Skip to content

Instantly share code, notes, and snippets.

@nurullahisik
Created February 18, 2019 13:37
Show Gist options
  • Select an option

  • Save nurullahisik/e56fbeb521aac95e3e3a71c2326b7310 to your computer and use it in GitHub Desktop.

Select an option

Save nurullahisik/e56fbeb521aac95e3e3a71c2326b7310 to your computer and use it in GitHub Desktop.
Global Variable
<?php
global $x;
$x = "asd";
asd();
function asd()
{
global $x;
echo $x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment