如何回应特殊字符

时间:2016-07-29 11:04:36

标签: php html

我正在使用Steam OpenID API来检索用户名。问题是一些用户有这样的名字(例如我的名字):

  

█Ỏ͖็✪sw3t░⠀็Ỏ͖͈̞̩͎̻̫̫̜͉̠̫͕█

但是当用户名被输入网页时,这就是用户名的样子:

  

“-ŽÍ-็œªsw3ðŸ“〜tâ- •̫̫ͫ«««

我找不到解决此问题的方法,但如果有人能设法找到解决方案,请在答案中将其链接。

2 个答案:

答案 0 :(得分:1)

header("Content-type: text/html; charset=UTF-8");

归功于https://stackoverflow.com/users/5626245/dave

答案 1 :(得分:0)

<?php

$message="!@#%&^*()%^%%$";

 echo htmlentities($message); 

?>