C# 相当于 php mysql_real_escape_string 函数?
C# 相当于 php mysql_real_escape_string 函数或类似函数?
mysql_real_escape_string() 调用 MySQL 的库函数 mysql_real_escape_string,该函数在以下字符前面添加反斜杠:\x00、\n、\r、\、'、" 和 \x1a。
C# equivalent to php mysql_real_escape_string function or similar function?
mysql_real_escape_string() calls MySQL's library function mysql_real_escape_string, which prepends backslashes to the following characters: \x00, \n, \r, \, ', " and \x1a.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为没有任何东西可以做到这一点,
System.Web.HttpUtility
类中有各种编码/转义方法。但是,如果只是要替换的那些字符,您可以使用 string.Replace()例如
I don't think there is anything that does that, there are various encoding/escaping methods in the
System.Web.HttpUtility
class. However if it is just those characters you want to replace you could usestring.Replace()
e.g.
我使用这个功能:
I use this function: