diff options
Diffstat (limited to 'ext/standard/tests/math/rad2deg_variation.phpt')
-rw-r--r-- | ext/standard/tests/math/rad2deg_variation.phpt | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/ext/standard/tests/math/rad2deg_variation.phpt b/ext/standard/tests/math/rad2deg_variation.phpt new file mode 100644 index 0000000..173cbc4 --- /dev/null +++ b/ext/standard/tests/math/rad2deg_variation.phpt @@ -0,0 +1,56 @@ +--TEST-- +Test variations in usage of rad2deg() +--INI-- +precision = 10 +--FILE-- +<?php +/* + * proto float rad2deg(float number) + * Function is implemented in ext/standard/math.c +*/ + + +//Test rad2deg with a different input values + +$values = array(23, + -23, + 2.345e1, + -2.345e1, + 0x17, + 027, + "23", + "23.45", + "2.345e1", + "nonsense", + "1000", + "1000ABC", + null, + true, + false); + +for ($i = 0; $i < count($values); $i++) { + $res = rad2deg($values[$i]); + var_dump($res); +} + +?> +--EXPECTF-- +float(1317.802929) +float(-1317.802929) +float(1343.58603) +float(-1343.58603) +float(1317.802929) +float(1317.802929) +float(1317.802929) +float(1343.58603) +float(1343.58603) + +Warning: rad2deg() expects parameter 1 to be double, string given in %s on line %d +NULL +float(57295.77951) + +Notice: A non well formed numeric value encountered in %s on line %d +float(57295.77951) +float(0) +float(57.29577951) +float(0) |