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 6f6289c commit ea3c541Copy full SHA for ea3c541
Zend/tests/gh13142.phpt
@@ -10,6 +10,10 @@ $$a;
10
$a = "test\0";
11
$$a;
12
13
+$GLOBALS["test\0test"];
14
+$GLOBALS["\0test"];
15
+$GLOBALS["test\0"];
16
+
17
compact("a\0b");
18
compact("\0ab");
19
compact("ab\0");
@@ -22,6 +26,12 @@ Warning: Undefined variable $%0test in %s on line %d
22
26
23
27
Warning: Undefined variable $test%0 in %s on line %d
24
28
29
+Warning: Undefined global variable $test%0test in %s on line %d
30
31
+Warning: Undefined global variable $%0test in %s on line %d
32
33
+Warning: Undefined global variable $test%0 in %s on line %d
34
25
35
Warning: compact(): Undefined variable $a%0b in %s on line %d
36
37
Warning: compact(): Undefined variable $%0ab in %s on line %d
0 commit comments