summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/atan2_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/atan2_basic.phpt')
-rw-r--r--ext/standard/tests/math/atan2_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/math/atan2_basic.phpt b/ext/standard/tests/math/atan2_basic.phpt
index 8312bb2890..f0055e4fdb 100644
--- a/ext/standard/tests/math/atan2_basic.phpt
+++ b/ext/standard/tests/math/atan2_basic.phpt
@@ -16,7 +16,7 @@ $valuesy = array(23,
null,
true,
false);
-
+
$valuesx = array(23,
-23,
2.345e1,
@@ -28,14 +28,14 @@ $valuesx = array(23,
"2.345e1",
null,
true,
- false);
+ false);
for ($i = 0; $i < count($valuesy); $i++) {
- for ($j = 0; $j < count($valuesx); $j++) {
+ for ($j = 0; $j < count($valuesx); $j++) {
$res = atan2($valuesy[$i], $valuesx[$j]);
echo "Y:$valuesy[$i] X:$valuesx[$j] ";
var_dump($res);
- }
+ }
}
?>
--EXPECT--