如何将 - 替换为 –使用 PHP
如何使用 php htmlspecialchars()
将 -
替换为 –
$content = $_POST['content'];
How do i replace -
with –
using php htmlspecialchars()
$content = $_POST['content'];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不需要,
-
不是特殊字符,因此htmlspecialchars()
不会触及它。而且-
甚至与–
不同(- 与 –)。如果您愿意,可以使用
str_replace()
:You don't,
-
is not a special character and as such will not be touched byhtmlspecialchars()
. And-
is not even same as–
(- vs. –).You can use
str_replace()
if you want to:htmlentities() 会将
–
转换为–< /code> (并处理任何其他实体)。
只需确保指定正确的字符集,例如:
htmlentities() will convert
–
to–
(and take care of any other entities as well).Just make sure you specify the correct character set, e.g.: