php-src/ext/mbstring/tests/mb_http_input.phpt
Nikita Popov 39131219e8
Migrate more SKIPIF -> EXTENSIONS (#7139)
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
2021-06-11 12:58:44 +02:00

44 lines
945 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()
--EXTENSIONS--
mbstring
--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"