I have this code:
<?php
$p = 9;
$p1 = 7;
function myTest(){
static $x = 6;
var_dump($GLOBALS);
}
myTest();
?>
I am having the following output, can anyone help me to understand what does that output mean:
array(7) { ["_GET"]=> array(1) { ["_ijt"]=> string(26) "ahnjuf13d078eoci4stj3ke4ti" } ["_POST"]=> array(0) { } ["_COOKIE"]=> array(1) { ["Phpstorm-a9066f19"]=> string(36) "362d152a-496e-48ee-8e53-281e38eefd84" } ["_FILES"]=> array(0) { } ["GLOBALS"]=> RECURSION ["p"]=> int(9) ["p1"]=> int(7) } array(7) { ["_GET"]=> array(1) { ["_ijt"]=> string(26) "ahnjuf13d078eoci4stj3ke4ti" } ["_POST"]=> array(0) { } ["_COOKIE"]=> array(1) { ["Phpstorm-a9066f19"]=> string(36) "362d152a-496e-48ee-8e53-281e38eefd84" } ["_FILES"]=> array(0) { } ["GLOBALS"]=> RECURSION ["p"]=> int(9) ["p1"]=> int(7) }