在 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()?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。