在 PHP 中,iconv_strlen()函數用於返回給定字符串的字符數。這是 PHP 中的一個內置函數,首先在 PHP 5 版本中使用。從 PHP 8.0 開始,編碼可以為空。
用法
string iconv_strlen(str $string, str $encoding)
參數
這個 PHP 函數接受兩個參數:$string和$encoding。
$string−$string 參數用於輸入字符串。
$encoding− 如果 $encoding 參數不存在或為空,則假定字符串被編碼為iconv.internal_encoding。
返回值
這個iconv_strlen()函數返回給定字符串中出現的字符數列表,如果在編碼過程中發生錯誤,則返回 False。
示例
<?php
//UTF-8 string
$integer = iconv_strlen("hello world!", "UTF-8");
// It will returns the number of character
var_dump($integer);
?>
輸出
int(12)
相關用法
- PHP iconv_substr()用法及代碼示例
- PHP iconv_set_encoding()用法及代碼示例
- PHP iconv_mime_decode()用法及代碼示例
- PHP iconv_mime_decode_headers()用法及代碼示例
- PHP iconv_mime_encode()用法及代碼示例
- PHP iconv_get_encoding()用法及代碼示例
- PHP iconv()用法及代碼示例
- PHP is_file( )用法及代碼示例
- PHP imagegif()用法及代碼示例
- PHP imageresolution()用法及代碼示例
- PHP imagebmp()用法及代碼示例
- PHP is_link( )用法及代碼示例
- PHP imap_getsubscribed()用法及代碼示例
- PHP is_link()用法及代碼示例
- PHP imagearc()用法及代碼示例
- PHP imageftbbox()用法及代碼示例
- PHP idate()用法及代碼示例
- PHP imagecreatefromgif()用法及代碼示例
- PHP imagecreatefrombmp()用法及代碼示例
- PHP imap_header()用法及代碼示例
注:本文由純淨天空篩選整理自Urmila Samariya大神的英文原創作品 PHP – How to return the character count of a string using iconv_strlen()?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。