summaryrefslogtreecommitdiff
path: root/Zend/tests/get_defined_functions_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/get_defined_functions_basic.phpt')
-rw-r--r--Zend/tests/get_defined_functions_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/get_defined_functions_basic.phpt b/Zend/tests/get_defined_functions_basic.phpt
index a849e32c78..f782b90892 100644
--- a/Zend/tests/get_defined_functions_basic.phpt
+++ b/Zend/tests/get_defined_functions_basic.phpt
@@ -1,5 +1,5 @@
--TEST--
-get_defined_functions() function : basic functionality
+get_defined_functions() function : basic functionality
--FILE--
<?php
@@ -29,7 +29,7 @@ if (!is_array($func)) {
if (!is_array($func["internal"])) {
echo "TEST FAILED: no element in result array with key 'internal'\n";
-}
+}
$internal = $func["internal"];
@@ -37,7 +37,7 @@ $internal = $func["internal"];
if (!in_array("cos", $internal) || !in_array("strlen", $internal)) {
echo "TEST FAILED: missing elements from 'internal' array\n";
var_dump($internal);
-}
+}
if (!is_array($func["user"])) {
echo "TEST FAILED: no element in result array with key 'user'\n";
@@ -49,7 +49,7 @@ if (count($user) == 2 && in_array("foo", $user) && in_array("helloworld", $user)
} else {
echo "TEST FAILED: missing elements from 'user' array\n";
var_dump($user);
-}
+}
?>
===Done===