mb_strlen only gives number of bytes,not what I wanted.
It should work with multibyte characters.
|
mb_strlen maybe ? |
|||||||||
|
|
mb_strlen the string being measured for length.
Directly from the documentation. |
|||
|
|
|
If you are using UTF-8 encoding step thru all bytes in string and count the chars which have the 8th bit NOT set. This solution does not need the mb extension. |
||||
|
|
|
I am not sure about mb_strlen, but I use just plain old strlen myself... http://php.net/manual/en/function.strlen.php |
|||
|
|
mb_substrgives you a substring of a given multi-byte string - this has nothing to do with the length of the string. Usemb_strlenas others have suggested. – Stefan Gehrig Apr 28 '10 at 10:13