开发者

Utf-16BE to ISO-8859-1 in PHP

开发者 https://www.devze.com 2022-12-23 15:25 出处:网络
i need to convert a Utf-16BE in ISO-8859-1 in PHP (开发者_StackOverflow社区i\'m not an expert in encoding so i don\'t know if Utf-16 and Utf-16BE are the same thing). I\'ve read somewhere to use the m

i need to convert a Utf-16BE in ISO-8859-1 in PHP (开发者_StackOverflow社区i'm not an expert in encoding so i don't know if Utf-16 and Utf-16BE are the same thing). I've read somewhere to use the mb_convert_encoding function but i haven't that function because i don't have the multibyte extension installed. So do you know an alternative method to do this?


There's also the iconv module exposing the string iconv ( string $in_charset , string $out_charset , string $str ) function.
You really don't want to code the conversion yourself, use one of those two modules.

0

精彩评论

暂无评论...
验证码 换一张
取 消