summaryrefslogtreecommitdiff
path: root/Zend/tests/get_defined_vars.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/get_defined_vars.phpt')
-rw-r--r--Zend/tests/get_defined_vars.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/get_defined_vars.phpt b/Zend/tests/get_defined_vars.phpt
index 81aa97a455..e999bd291d 100644
--- a/Zend/tests/get_defined_vars.phpt
+++ b/Zend/tests/get_defined_vars.phpt
@@ -34,7 +34,7 @@ $arr = get_defined_vars();
/* Displaying various variable through the array captured by the get_defined_vars function call */
echo "\n*** Displaying various variables through the array captured by the get_defined_vars function call ***\n";
-var_dump( $arr["argc"] );
+var_dump( $arr["argc"] );
var_dump( $arr["number"] );
var_dump( $arr["string"] );
var_dump( $arr["array1"] );
@@ -63,7 +63,7 @@ func2();
func1();
echo "\nDone";
-?>
+?>
--EXPECTF--
*** Displaying various variables through the array captured by the get_defined_vars function call ***
int(1)