标签: php
我得到了这个字符串,我猜是Hex编码:
<? $s="lechau"; echo chr(hexdec($s)) ?>
我该如何解码?
答案 0 :(得分:2)
它们是HTML编码的unicode字符,而不是十六进制编码的字符串。要对此进行解码,您可以使用html_entity_decode(),如下所示:
html_entity_decode()
echo html_entity_decode($s);
将产生:
lechau