实际上我想将所有特殊字符转换为他们的代码,如下所示:
! !
" "
# #
$ $
% %
& &
' '
( (
) )
* *
+ +
, ,
- -
. .
/ /
有没有办法将它们转换成php中受尊重的代码。
答案 0 :(得分:-1)
PHP中有一些名为html_entity_decode
和htmlentities
的函数。
答案 1 :(得分:-1)
$str="!";
echo html_entity_decode($str); //output !