We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fa6dcd commit ee243bcCopy full SHA for ee243bc
ext/standard/tests/array/bug78759.phpt
@@ -4,9 +4,9 @@ Bug #78759: array_search in $GLOBALS
4
<?php
5
6
$a = 22;
7
-var_dump($GLOBALS["a"]); // int 22
8
-var_dump(array_search(22, $GLOBALS)); // false
9
-var_dump(array_search(22, $GLOBALS, true)); // false
+var_dump($GLOBALS["a"]);
+var_dump(array_search(22, $GLOBALS));
+var_dump(array_search(22, $GLOBALS, true));
10
11
?>
12
--EXPECT--
0 commit comments