mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
22 lines
459 B
PHP
22 lines
459 B
PHP
--TEST--
|
|
mb_http_input() errors:
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
var_dump(mb_http_input('PN'));
|
|
} catch (ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump(mb_http_input('Q'));
|
|
} catch (ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
mb_http_input(): Argument #1 ($type) must be one of "G", "P", "C", "S", "I", or "L"
|
|
mb_http_input(): Argument #1 ($type) must be one of "G", "P", "C", "S", "I", or "L"
|