mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
14 lines
551 B
PHP
14 lines
551 B
PHP
--TEST--
|
|
ini_parse_quantity() function - warns when given inappropriate values
|
|
--INI--
|
|
error_reporting = E_ALL
|
|
--FILE--
|
|
<?php
|
|
ini_parse_quantity('-1');
|
|
ini_parse_quantity('1mb');
|
|
ini_parse_quantity('256 then skip a few then g')
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Invalid quantity "1mb": unknown multiplier "b", interpreting as "1" for backwards compatibility in %sini_parse_quantity_warnings.php on line 3
|
|
|
|
Warning: Invalid quantity "256 then skip a few then g", interpreting as "256 g" for backwards compatibility in %sini_parse_quantity_warnings.php on line 4
|