php-src/ext/filter/tests/bug7715.phpt
Ilia Alshanetsky 80cecdb41f Refactor the filter extension
- Cleanup API
	- Added handling for circular references
	- Renamed functions.

# Original patch by Pierre
2006-10-03 02:16:53 +00:00

30 lines
405 B
PHP

--TEST--
bug 7715, floats value with integer or incomplete input
--FILE--
<?php
$data = array(
'.23',
'-42',
'+42',
'.4',
'-.4',
'1000000000000',
'-1000000000000',
'02.324'
);
foreach ($data as $val) {
$res = filter_var($val, FILTER_VALIDATE_FLOAT);
var_dump($res);
}
echo "\n";
?>
--EXPECTF--
float(0.23)
float(-42)
float(42)
float(0.4)
float(-0.4)
float(1.0E+12)
float(-1.0E+12)
float(2.324)