1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 04:51:03 +02:00
Files
archived-php-src/ext/standard/tests/math/log1p_basic.phpt
Nikita Popov a939805641 Use serialize_precision for var_dump()
var_dump() is debugging functionality, so it should print
floating-point numbers accurately. We do this by switching
to serialize_precision, which (by default) will print with
as much precision as necessary to preserve the exact value
of the float.

This also affects debug_zval_dump().

Closes GH-5172.
2020-02-25 09:51:32 +01:00

77 lines
1.3 KiB
PHP

--TEST--
Test log1p() - basic function test log1p()
--INI--
precision=14
--FILE--
<?php
/* Prototype : float log1p ( float $arg )
* Description: Returns log(1 + number), computed in a way that is accurate even
* when the value of number is close to zero
* Source code: ext/standard/math.c
*/
echo "*** Testing log1p() : basic functionality ***\n";
$values = array(23,
-23,
2.345e1,
-2.345e1,
0x17,
027,
"23",
"23.45",
"2.345e1",
null,
true,
false);
echo "\n LOG1p tests\n";
foreach($values as $value) {
echo "\n-- log1p $value --\n";
var_dump(log1p($value));
};
?>
--EXPECT--
*** Testing log1p() : basic functionality ***
LOG1p tests
-- log1p 23 --
float(3.1780538303479458)
-- log1p -23 --
float(NAN)
-- log1p 23.45 --
float(3.196630215920881)
-- log1p -23.45 --
float(NAN)
-- log1p 23 --
float(3.1780538303479458)
-- log1p 23 --
float(3.1780538303479458)
-- log1p 23 --
float(3.1780538303479458)
-- log1p 23.45 --
float(3.196630215920881)
-- log1p 2.345e1 --
float(3.196630215920881)
-- log1p --
float(0)
-- log1p 1 --
float(0.6931471805599453)
-- log1p --
float(0)