summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/floor_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/floor_basic.phpt')
-rw-r--r--ext/standard/tests/math/floor_basic.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/tests/math/floor_basic.phpt b/ext/standard/tests/math/floor_basic.phpt
index 2b6d2f75c8..e21e893ab3 100644
--- a/ext/standard/tests/math/floor_basic.phpt
+++ b/ext/standard/tests/math/floor_basic.phpt
@@ -21,7 +21,7 @@ $values = array(0,
2.6,
-2.6,
037,
- 0x5F,
+ 0x5F,
"10.5",
"-10.5",
"3.95E3",
@@ -29,13 +29,13 @@ $values = array(0,
"039",
true,
false,
- null,
- );
-
+ null,
+ );
+
foreach($values as $value) {
echo "\n-- floor $value --\n";
var_dump(floor($value));
-};
+};
?>
===Done===