使用 preg_replace 在单引号前添加反斜杠
如何使用 preg_replace() php 函数在单引号前添加反斜杠?
How to add a backslash before single quotes using preg_replace() php function ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不想转义数据库输入:
如果您是:
请考虑使用适当的转义函数。 (例如 mysql_real_escape_string)或仅使用准备好的语句。
In case you are not trying to escape Database input:
In case you are:
Please consider using the appropriate escaping function. (E.g. mysql_real_escape_string) or just use prepared statements.
只需使用函数 str_replace 将 ' 的每个实例替换为 \'
just use the function str_replace to replace every instance of ' to \'