Decode a String
Posted: Thu May 14, 2009 5:57 am
Need help..
I'd found an example of using mb_convert_encoding() to encode a string.
and the output is :
Test:!"$%&/()=??????<<
Anyone know how to decode it back to string?
Urgently need it..
I'd found an example of using mb_convert_encoding() to encode a string.
Code: Select all
<?
$string = 'Test:!"$%&/()=ÖÄÜöäü<<';
echo mb_convert_encoding($string,'ASCII');
?>Test:!"$%&/()=??????<<
Anyone know how to decode it back to string?
Urgently need it..