Why is the output of the following statement 3 and not 1?
echo mb_strlen("鉑");
Thing is that
echo "鉑";
will properly output this sign which is encoded as UTF-8.
|
Why is the output of the following statement 3 and not 1?
Thing is that
will properly output this sign which is encoded as UTF-8. |
|||
|
Make sure you set the proper internal encoding:
|
|||
|
|
|
You will likeliy need to add the character set:
|
|||
|
|
|
If you do the following, you will get the correct answer
I'm guess php is defaulting to ASCII which produces an answer of 3. I also found a very interesting article on Encoding for anyone interested in why and how it works. http://www.joelonsoftware.com/articles/Unicode.html |
||||
|
|
mb_strlen('鉑', 'UTF-8');? – middaparka Apr 22 '11 at 22:04