mb_strlen() 是一個內置 PHP 函數,它以整數形式返回字符串長度。
用法:
mb_strlen($string, $encoding ): int
Parameters: 該函數接受 2 個參數,如下所述:
- $string: 需要確定長度的字符串參數。這是必需的參數。
- $encoding: 它是一個可選參數。此參數說明了您在字符串參數中使用的編碼類型。這裏,encoding參數表示字符編碼。如果省略或為空,則將使用內部字符編碼值。
返回值:該函數將返回字符串中具有字符編碼的字符數。對於多字節字符,它將計為 1。
示例 1:下麵的程序演示了mb_strlen()函數。
PHP
<?php
$str = "안녕하세요";
$length = mb_strlen($str, 'UTF-8');
echo "The length of the string is $length";
?>
輸出:
The length of the string is 5
示例 2:下麵的程序演示了mb_strlen()函數。
PHP
<?php
$str = "GeeksforGeeks";
$length = mb_strlen($str);
echo "The length of the string is $length";
?>
輸出:
The length of the string is 13
參考:https://www.php.net/manual/en/function.mb-strlen.php
相關用法
- PHP mb_strlen()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
- PHP mb_strrchr()用法及代碼示例
- PHP mb_strimwidth()用法及代碼示例
- PHP mb_stristr()用法及代碼示例
- PHP mb_strripos()用法及代碼示例
- PHP mb_strstr()用法及代碼示例
- PHP mb_strpos()用法及代碼示例
- PHP mb_stripos()用法及代碼示例
- PHP mb_strrichr()用法及代碼示例
- PHP mb_strcut()用法及代碼示例
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_split()用法及代碼示例
- PHP mb_scrub()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_chr()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_http_input()用法及代碼示例
- PHP mb_convert_encoding()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_strlen() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。