1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/lang/bug73329.phpt
2020-02-03 22:52:20 +01:00

17 lines
224 B
PHP

--TEST--
Bug #73329 (Float)"Nano" == NAN
--FILE--
<?php
var_dump(
(float)"nanite",
(float)"nan",
(float)"inf",
(float)"infusorian"
);
?>
--EXPECT--
float(0)
float(0)
float(0)
float(0)