PHP userland backwards compatibility layer that emulates PHP 5.5+ core functions.

⌈⌋ ⎇ branch:  upgrade.php


Artifact [b4cafdeb2a]

Artifact b4cafdeb2a884cf22b30449f776d5bde489934ae:

  • File doc/tests2filter/bug7715.phpt — part of check-in [51e3884900] at 2010-06-22 17:03:27 on branch trunk — upgradephp-15 (user: mario size: 405)

--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)