PHP - Convert unicode string to string? -


i have gps returns address in unicode string format, example:

0053 004f 0053 0028 004c 0029 003a 0053 0068 0069 006d 0069 006e 0020 0046 0061 0069  0072 0079 006c 0061 006e 0064 0020 0057 0065 0073 0074 0020 0052 0064 002c 0048 0075  0069 0063 0068 0065 006e 0067 002c 0048 0075 0069 007a 0068 006f 0075 002c 0047 0075  0061 006e 0067 0064 006f 006e 0067 0028 004e 0032 0033 002e 0031 0031 0031 002c 0045  0031 0031 0034 002e 0034 0031 0031 0029 004e 0065 0061 0072 0062 0079  should (according website: http://rishida.net/tools/conversion/)  s o s ( l ) : s h m n   f r y l n d   w e s t   r d ,  h u c h e n g , h u z h o u ,  g u n g d o n g ( n 2 3 . 1 1 1 , e 1 1 4 . 4 1 1 ) n e r b y 

how can achieve in php?

you need explode each string first, append &#x on each strings can utilize html_entity_decode(). consider example:

$string = '0053 004f 0053 0028 004c 0029 003a 0053 0068 0069 006d 0069 006e 0020 0046 0061 0069  0072 0079 006c 0061 006e 0064 0020 0057 0065 0073 0074 0020 0052 0064 002c 0048 0075  0069 0063 0068 0065 006e 0067 002c 0048 0075 0069 007a 0068 006f 0075 002c 0047 0075  0061 006e 0067 0064 006f 006e 0067 0028 004e 0032 0033 002e 0031 0031 0031 002c 0045  0031 0031 0034 002e 0034 0031 0031 0029 004e 0065 0061 0072 0062 0079';  $final_string = ''; foreach(explode(' ', $string) $string) {     $final_string .= html_entity_decode('&#x' . trim($string)); }  echo $final_string; // sos(l):shimin fairyland west rd,huicheng,huizhou,guangdong(n23.111,e114.411)nearby 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -