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.phpt44
1 files changed, 22 insertions, 22 deletions
diff --git a/ext/standard/tests/math/floor_basic.phpt b/ext/standard/tests/math/floor_basic.phpt
index c5d2fc46b1..84153af08e 100644
--- a/ext/standard/tests/math/floor_basic.phpt
+++ b/ext/standard/tests/math/floor_basic.phpt
@@ -11,30 +11,30 @@ precision=14
echo "*** Testing floor() : basic functionality ***\n";
$values = array(0,
- -0,
- 0.5,
- -0.5,
- 1,
- -1,
- 1.5,
- -1.5,
- 2.6,
- -2.6,
- 037,
- 0x5F,
- "10.5",
- "-10.5",
- "3.95E3",
- "-3.95E3",
- "039",
- true,
- false,
- null,
- );
+ -0,
+ 0.5,
+ -0.5,
+ 1,
+ -1,
+ 1.5,
+ -1.5,
+ 2.6,
+ -2.6,
+ 037,
+ 0x5F,
+ "10.5",
+ "-10.5",
+ "3.95E3",
+ "-3.95E3",
+ "039",
+ true,
+ false,
+ null,
+ );
foreach($values as $value) {
- echo "\n-- floor $value --\n";
- var_dump(floor($value));
+ echo "\n-- floor $value --\n";
+ var_dump(floor($value));
};
?>