mb_http_input() 是 PHP 中的内置函数,可帮助检测 HTTP 输入字符编码。
用法:
mb_http_input(?string $type = null): array|string|false
范围:
- type: 此参数采用的值包括 “G”(表示 GET)、“P”(表示 POST)、“C”(表示 COOKIE)、“S”(表示字符串)、“L”(表示列表)以及 “I”(表示将返回数组的整个列表)。如果类型丢失,则返回最后处理的输入类型。
返回值:此函数将返回字符编码名称或字符编码名称数组,具体取决于类型。如果函数不处理指定的 HTTP 输入,则返回“false”。
示例 1:下面的代码演示了mb_http_input()函数。
PHP
<?php
// Get the character encoding of the HTTP input
$http_input_encoding = mb_http_input('I');
// Output the encoding
var_dump( $http_input_encoding);
?>
输出:
array(1) { [0]=> string(5) "UTF-8" }
示例 2:下面的代码演示了mb_http_input()函数。
PHP
<?php
$http_input_encoding = mb_http_input("G");
// Output the encoding
var_dump($http_input_encoding);
?>
输出:
bool(false)
参考: https://www.php.net/manual/en/function.mb-http-input.php
相关用法
- PHP mb_http_output()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_str_split()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_convert_encoding()用法及代码示例
- PHP mb_parse_str()用法及代码示例
- PHP mb_encode_numericentity()用法及代码示例
- PHP mb_encoding_aliases()用法及代码示例
- PHP mb_strrchr()用法及代码示例
- PHP mb_strimwidth()用法及代码示例
- PHP mb_ereg_search_regs()用法及代码示例
- PHP mb_ereg_search_init()用法及代码示例
- PHP mb_stristr()用法及代码示例
- PHP mb_ereg_search_pos()用法及代码示例
- PHP mb_split()用法及代码示例
- PHP mb_ereg_search_setpos()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_http_input() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。