"pass" means "no conversion":
See here:
http://php.net/manual/en/mbstring.configuration.php#ini.mbstring.strict-detection
mbstring.http_input = pass ; No conversion.
mbstring.http_output = pass ; No conversion
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
mb_http_input — HTTP 入力文字エンコーディングを検出する
type
HTTP 入力の型を表す文字列を入力してください。
GET の場合は "G"
、POST の場合は "P"
、
COOKIE の場合は "C"
、文字列の場合は "S"
、
リストの場合は "L"
、リスト全体(配列を返す)
の場合は "I"
です。 type
が省略された場合、
直近に処理された入力型が返されます。
type
の文字エンコーディング名を返します。
type
が "I"
の場合は、
文字エンコーディング名の配列を返します。
mb_http_input()
が指定した HTTP 入力の処理を行っていない場合、false
を返します。
バージョン | 説明 |
---|---|
8.0.0 |
type は、nullable になりました。
|
"pass" means "no conversion":
See here:
http://php.net/manual/en/mbstring.configuration.php#ini.mbstring.strict-detection
mbstring.http_input = pass ; No conversion.
mbstring.http_output = pass ; No conversion
As this does not seam to work (always returns "pass"). you can use
$encoding = mb_detect_encoding(urldecode($REQUEST_URI), 'UTF-8, UTF-7, ASCII, EUC-JP,SJIS, eucJP-win, SJIS-win, JIS, ISO-2022-JP, ISO-8859-1');
to detect the encoding of the url instead, similare steps could be taken to deteck cookies and post data although it would have to be done for each value.