Skip to content

Instantly share code, notes, and snippets.

@rasoulvatanparast
Created June 28, 2019 12:55
Show Gist options
  • Save rasoulvatanparast/b90052329de6284e385cffed3dffc0da to your computer and use it in GitHub Desktop.
Save rasoulvatanparast/b90052329de6284e385cffed3dffc0da to your computer and use it in GitHub Desktop.
<?php
$xVar = 10;
function test(){
echo $xVar;
}
echo $xVar;
test();
/*
output:
10
Notice: Undefined variable: xVar in C:\xampp\htdocs\a.php on line 7
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment