1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/mbstring/tests/mb_http_input.phpt
2020-09-07 09:59:51 +02:00

47 lines
1008 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--TEST--
mb_http_input()
--SKIPIF--
<?php
extension_loaded('mbstring') or die('skip mbstring not available');
?>
--POST--
a=ÆüËܸì0123456789ÆüËܸ쥫¥¿¥«¥Ê¤Ò¤é¤¬¤Ê
--GET--
b=ÆüËܸì0123456789ÆüËܸ쥫¥¿¥«¥Ê¤Ò¤é¤¬¤Ê
--INI--
mbstring.encoding_translation=1
input_encoding=latin1
--FILE--
<?php
echo $_POST['a']."\n";
echo $_GET['b']."\n";
// Get encoding
var_dump(mb_http_input('P'));
var_dump(mb_http_input('G'));
var_dump(mb_http_input('C'));
var_dump(mb_http_input('S'));
var_dump(mb_http_input('I'));
var_dump(mb_http_input('L'));
try {
var_dump(mb_http_input('Q'));
} catch (ValueError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
ÆüÃܸì0123456789ÆüÃܸ쥫¥¿¥«¥Ê¤Ã¤é¤¬¤Ê
ÆüÃܸì0123456789ÆüÃܸ쥫¥¿¥«¥Ê¤Ã¤é¤¬¤Ê
string(10) "ISO-8859-1"
string(10) "ISO-8859-1"
bool(false)
bool(false)
array(1) {
[0]=>
string(10) "ISO-8859-1"
}
string(10) "ISO-8859-1"
mb_http_input(): Argument #1 ($type) must be one of "G", "P", "C", "S", "I" or "L"