对于这种文本,我应该使用哪种类型的字符编码:
R%C3%A9f%C3%A9rence我使用了htmlentities和utf8_encode,但它不起作用
发布于 2014-01-09 15:12:51
我想我对你的问题有答案了。首先,确保您的文档具有正确的字符集。
header('Content-Type: text/html; charset=utf-8');
echo urldecode('R%C3%A9f%C3%A9rence');https://stackoverflow.com/questions/21013462
复制相似问题