m_ord() 是 PHP 中的内置函数,它返回特定字符的 Unicode 代码点。
用法:
mb_ord(string $string, ?string $encoding = null): int|false
Parameters: 该函数有两个参数:
- string: 这是字符串输入。它必须是有效的字符串。
- encoding: 编码参数指定字符编码。如果省略或为空,则将使用内部字符编码值。
返回值:如果函数执行成功,该函数将返回第一个字符 Unicode,否则将返回“false”。
示例 1:下面的代码演示了mb_ord()函数。
PHP
<?php
$string = '©';
$code_point = mb_ord($string, 'ISO-8859-1');
echo $code_point;
?>
输出:
194
示例 2:下面的代码演示了mb_ord()函数。
PHP
<?php
$word = 'Hello';
$code_point = mb_ord($word, 'UTF-8');
if ($code_point === 72) {
echo "The first character in the word is 'H'.";
}
else {
echo "The first character in the word is not 'H'.";
}
?>
输出:
The first character in the word is 'H'.
参考:https://www.php.net/manual/en/function.mb-ord.php
相关用法
- 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_http_input()用法及代码示例
- 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_ord() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。