Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This code

print mb_substr('éxxx', 0, 1);

prints an empty space :(

It is supposed to print the first character, é. This seems to work however:

print mb_substr('éxxx', 0, 2);

But it's not right, because (0, 2) means 2 characters...

share|improve this question

2 Answers

up vote 14 down vote accepted

Try passing the encoding parameter to mb_substr, as such:

print mb_substr('éxxx', 0, 1, 'utf-8');

The encoding is never detected automatically.

share|improve this answer
3  
The encoding is never detected automatically, it just always defaults to something. – deceze Dec 19 '12 at 13:20
Could it be a better idea if you use mb_detect_encoding to actually try to detect the encoding? – Alvin Wong Dec 19 '12 at 13:20
4  
@AlvinWong No. Know what encoding you're working with, there's no other way. – deceze Dec 19 '12 at 13:21
@Alvin Wong, that would be more correct, yes, but I could also say that using anything but utf-8 can be considered adventurous and marginal :) – povilasp Dec 19 '12 at 13:21
2  
OK, then how about mb_internal_encoding instead of passing "utf-8" to all mb_* functions? Just like Álvaro G. Vicario has pointed out – Alvin Wong Dec 19 '12 at 13:31
show 5 more comments

In practice I've found that, in some systems, multi-byte functions default to ISO-8859-1 for internal encoding. That effectively ruins their ability to handle multi-byte text.

Setting a good default will probably fix this and some other issues:

mb_internal_encoding('UTF-8');
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.