vote up 3 vote down star

How do I convert a utf-8 string to a utf-16 string in PHP?

flag

2 Answers

vote up 0 vote down

You could also use iconv.

It's native in PHP, but require that all your text is one charset. Else it could discard characters.

link|flag
vote up 5 vote down

mbstring supports UTF-16, so you can use mb_convert_encoding.

link|flag

Your Answer

Get an OpenID
or

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