summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/fmod_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/fmod_basic.phpt')
-rw-r--r--ext/standard/tests/math/fmod_basic.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/standard/tests/math/fmod_basic.phpt b/ext/standard/tests/math/fmod_basic.phpt
index 003a49498e..afba080cf3 100644
--- a/ext/standard/tests/math/fmod_basic.phpt
+++ b/ext/standard/tests/math/fmod_basic.phpt
@@ -15,8 +15,8 @@ $values1 = array(234,
"23.45e1",
null,
true,
- false);
-
+ false);
+
$values2 = array(2,
-2,
2.3e1,
@@ -28,14 +28,14 @@ $values2 = array(2,
"2.3e1",
null,
true,
- false);
+ false);
for ($i = 0; $i < count($values1); $i++) {
- echo "\niteration ", $i, "\n";
-
+ echo "\niteration ", $i, "\n";
+
for ($j = 0; $j < count($values2); $j++) {
$res = fmod($values1[$i], $values2[$j]);
var_dump($res);
- }
+ }
}
?>
--EXPECT--