summaryrefslogtreecommitdiff
path: root/Zend/tests/bug28072.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug28072.phpt')
-rw-r--r--Zend/tests/bug28072.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/bug28072.phpt b/Zend/tests/bug28072.phpt
index 76208733f8..3acd156320 100644
--- a/Zend/tests/bug28072.phpt
+++ b/Zend/tests/bug28072.phpt
@@ -4,8 +4,8 @@ Bug #28072 (static array with some constant keys will be incorrectly ordered)
<?php
define("FIRST_KEY", "a");
define("THIRD_KEY", "c");
-
-
+
+
function test()
{
static $arr = array(
@@ -16,7 +16,7 @@ function test()
);
print_r($arr);
}
-
+
function test2()
{
static $arr = array(
@@ -27,7 +27,7 @@ function test2()
);
print_r($arr);
}
-
+
test();
test2();
?>