mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
This deprecates passing null to non-nullable scale arguments of internal functions, with the eventual goal of making the behavior consistent with userland functions, where null is never accepted for non-nullable arguments. This change is expected to cause quite a lot of fallout. In most cases, calling code should be adjusted to avoid passing null. In some cases, PHP should be adjusted to make some function arguments nullable. I have already fixed a number of functions before landing this, but feel free to file a bug if you encounter a function that doesn't accept null, but probably should. (The rule of thumb for this to be applicable is that the function must have special behavior for 0 or "", which is distinct from the natural behavior of the parameter.) RFC: https://wiki.php.net/rfc/deprecate_null_to_scalar_internal_arg Closes GH-6475.
67 lines
1.0 KiB
PHP
67 lines
1.0 KiB
PHP
--TEST--
|
|
Test log1p() - basic function test log1p()
|
|
--INI--
|
|
precision=14
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing log1p() : basic functionality ***\n";
|
|
|
|
$values = array(23,
|
|
-23,
|
|
2.345e1,
|
|
-2.345e1,
|
|
0x17,
|
|
027,
|
|
"23",
|
|
"23.45",
|
|
"2.345e1",
|
|
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 1 --
|
|
float(0.6931471805599453)
|
|
|
|
-- log1p --
|
|
float(0)
|