去掉php中的特殊字符
我有下面的代码:
<?php echo $fields->question; ?>
我特别想去掉任何可能导致 php 问题的特殊字符,我该怎么做?具体来说,“”目前给我带来了一个问题。
I have the code below:
<?php echo $fields->question; ?>
I specifically want to strip out any special characters that may cause an issue with php, how could I do that? Specifically "" is causing me a problem at the moment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尝试过addslashes() 原生PHP 函数吗?
这不会将它们删除,但应该可以防止它们因转义引号而给您带来任何问题。
Have you tried the addslashes() native PHP function?
This won't strip them out, but it should prevent them from causing you any problems by escaping the quotes.