在 PHP 中,multibyte string length (mb_strlen)函數用於獲取指定字符串的總字符串長度。 PHP 4.6.0 或更高版本支持此函數。
用法
int mb_strlen(str $string, str $encoding)
參數
mb_strlen()接受兩個參數:$string和$encoding。
$string−它用於檢查字符串長度
$encoding−該參數用於字符編碼。如果省略或為空,則將使用內部字符編碼值。
返回值
mb_strlen()返回給定字符串中存在的字符數。一個算作 multi-byte 字符。
錯誤/異常
如果編碼未知,那麽它將生成級別E_warning.
示例
<?php
// It will return total number of character
$result = mb_strlen("Hello World","UTF-8");
echo "Total number of characters:", $result;
?>
輸出
Total number of characters:11
注意:它也計算給定字符串中的空間。
相關用法
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_chr()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP metaphone()用法及代碼示例
- PHP mhash_get_hash_name()用法及代碼示例
- PHP mysqli_get_server_info()用法及代碼示例
- PHP money_format()用法及代碼示例
- PHP mysqli_data_seek()用法及代碼示例
- PHP mysqli_insert_id()用法及代碼示例
- PHP mysqli_fetch_assoc()用法及代碼示例
- PHP mkdir()用法及代碼示例
- PHP mysqli_connect_error()用法及代碼示例
- PHP mhash_keygen_s2k()用法及代碼示例
注:本文由純淨天空篩選整理自Urmila Samariya大神的英文原創作品 PHP – Get the string length using mb_strlen()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。