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 の文字数を返します。

参考