Php/docs/function.iconv-strlen

来自菜鸟教程
跳转至:导航、​搜索

iconv_strlen

(PHP 5, PHP 7)

iconv_strlen返回字符串的字符数统计


说明

iconv_strlen ( string $str [, string $charset = ini_get("iconv.internal_encoding") ] ) : int

strlen() 不同的是,iconv_strlen() 统计了给定的字节序列 str 中出现字符数的统计,基于指定的字符集,其产生的结果不一定和字符字节数相等。


参数

str
该字符串。
charset
如果省略了 charset 参数,假设 str 的编码为 iconv.internal_encoding


返回值

返回 str 字符数的统计,是整型。


参见