"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)
mb_http_input — Определение кодировки символов входных данных HTTP-запроса
Определяет кодировку входных данных HTTP-запроса.
type
Строка запроса задает тип входных данных. "G" для GET запроса, "P" для POST запроса, "C" для COOKIE, "S" для строк, "L" для списка и "I" для всего вместе (будет возвращен массив (array)). Если аргумент опущен, функция вернет последний использовавшийся тип.
Наименование кодировки символов для заданного типа
type
. Если
mb_http_input() не может обработать
HTTP-запрос, она вернет FALSE
.
"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.