Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

mb_strlen only gives number of bytes,not what I wanted.

It should work with multibyte characters.

share|improve this question
mb_substr gives you a substring of a given multi-byte string - this has nothing to do with the length of the string. Use mb_strlen as others have suggested. – Stefan Gehrig Apr 28 '10 at 10:13

6 Answers

mb_strlen maybe ?

share|improve this answer
No,it's wrong... – openid Apr 28 '10 at 10:13
1  
It's correct, perhaps PHP doesn't recognize your string as Multibyte string? Try something like this: mb_strlen($your_multibyte_string,$encoding) where encoding should be something like "UTF-8" or "UTF-16" – jigfox Apr 28 '10 at 10:31
How do you use mb_strlen, and what encoding is used for the string you're testing ? – Arkh Apr 28 '10 at 11:18
mb_strlen($text, "UTF-8");
share|improve this answer

mb_strlen() with mb_internal_encoding('UTF-8')

share|improve this answer

mb_strlen the string being measured for length.

<?php
$str = 'abcdef';
echo strlen($str); // 6

$str = ' ab cd ';
echo strlen($str); // 7
?>

Directly from the documentation.

share|improve this answer

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.

share|improve this answer

I am not sure about mb_strlen, but I use just plain old strlen myself... http://php.net/manual/en/function.strlen.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.