doc-en icon indicating copy to clipboard operation
doc-en copied to clipboard

intval returns unxpected result for string with "." and "e" which is not documented.

Open Sunvas opened this issue 1 month ago • 2 comments

echo intval('42.'); //42     ok
echo intval('42.42'); //42     ok
echo intval('42.42e'); //42    ok
echo intval('42.42e42'); //9223372036854775807

From manual page: https://php.net/function.intval

Sunvas avatar Nov 26 '25 19:11 Sunvas