解码“&Lowbar;”的正确方法是什么?进入 ”_”?
What is the correct way to decode "&Lowbar;" into "_"?
我试过使用 html_entity_decode 但没用。
使用它解码的正确函数是什么?
您可以简单地使用 ENT_HTML5
标志和 html_entity_decode :
echo html_entity_decode ('_', ENT_HTML5);
哪个打印:
_
参见PHP手册:https://www.php.net/manual/en/function.html-entity-decode.php
我试过使用 html_entity_decode 但没用。
使用它解码的正确函数是什么?
您可以简单地使用 ENT_HTML5
标志和 html_entity_decode :
echo html_entity_decode ('_', ENT_HTML5);
哪个打印:
_
参见PHP手册:https://www.php.net/manual/en/function.html-entity-decode.php