Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test return type and value for expected input atan() --INI-- precision = 14 --FIL..
Decoded Output download
--TEST--
Test return type and value for expected input atan()
--INI--
precision = 14
--FILE--
<?php
/*
* Function is implemented in ext/standard/math.c
*/
$file_path = __DIR__;
require($file_path."/allowed_rounding_error.inc");
echo "atan 1.7320508075689 = ";
$atan1 = 360 * atan(1.7320508075689) / (2.0 * M_PI);
var_dump($atan1);
if (allowed_rounding_error($atan1 ,60 )) {
echo "Pass
";
}
else {
echo "Fail
";
}
echo "atan 0.57735026918963 = ";
$atan2 = 360 * atan(0.57735026918963) / (2.0 * M_PI);
var_dump($atan2);
if (allowed_rounding_error($atan2 ,30 )) {
echo "Pass
";
}
else {
echo "Fail
";
}
?>
--EXPECTF--
atan 1.7320508075689 = float(%f)
Pass
atan 0.57735026918963 = float(%f)
Pass
Did this file decode correctly?
Original Code
--TEST--
Test return type and value for expected input atan()
--INI--
precision = 14
--FILE--
<?php
/*
* Function is implemented in ext/standard/math.c
*/
$file_path = __DIR__;
require($file_path."/allowed_rounding_error.inc");
echo "atan 1.7320508075689 = ";
$atan1 = 360 * atan(1.7320508075689) / (2.0 * M_PI);
var_dump($atan1);
if (allowed_rounding_error($atan1 ,60 )) {
echo "Pass\n";
}
else {
echo "Fail\n";
}
echo "atan 0.57735026918963 = ";
$atan2 = 360 * atan(0.57735026918963) / (2.0 * M_PI);
var_dump($atan2);
if (allowed_rounding_error($atan2 ,30 )) {
echo "Pass\n";
}
else {
echo "Fail\n";
}
?>
--EXPECTF--
atan 1.7320508075689 = float(%f)
Pass
atan 0.57735026918963 = float(%f)
Pass
Function Calls
None |
Stats
MD5 | 2cbe58e050596a72d67e3b19292a6391 |
Eval Count | 0 |
Decode Time | 74 ms |