Can this be achieved using php ? ie. by reading in the characters and doing something to them ? thanks.I have a file with null characters -X00 every second byte, so I think it is in double byte format. So my question is how do I strip out those bytes?
Converting double byte
Moderator: General Moderators
Converting double byte
A friend just sent me an email containing the following
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
his file is in UTF16.
mb_convert_encoding() should be able to do a translation... or
iconv() may do the translation..
mb_convert_encoding() should be able to do a translation... or
iconv() may do the translation..