Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/filter/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/filter/tests/031.phpt |
--TEST-- filter_var() and FLOAT --SKIPIF-- <?php if (!extension_loaded("filter")) die("skip"); ?> --INI-- precision=14 --FILE-- <?php $floats = array( '1.234 ', ' 1.234', '1.234' , '1.2e3', '7E3', '7E3 ', ' 7E3 ', ' 7E-3 ' ); foreach ($floats as $float) { $out = filter_var($float, FILTER_VALIDATE_FLOAT); var_dump($out); } $floats = array( '1.234 ' => ',', '1,234' => ',', ' 1.234' => '.', '1.234' => '..', '1.2e3' => ',' ); echo "\ncustom decimal:\n"; foreach ($floats as $float => $dec) { $out = filter_var($float, FILTER_VALIDATE_FLOAT, array("options"=>array('decimal' => $dec))); var_dump($out); } ?> --EXPECTF-- float(1.234) float(1.234) float(1.234) float(1200) float(7000) float(7000) float(7000) float(0.007) custom decimal: bool(false) float(1.234) float(1.234) Warning: filter_var(): decimal separator must be one char in %s on line %d bool(false) bool(false)
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare