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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。