mysql转义
PHP mysql 转义函数谁给小弟一个,查询的时候好像还要反转义函数,赐教!
之类的符号应该能转吧
回复讨论(解决方案)
转义只要字符串好了,你要整个语句转义?
我不知道啊,就是表单提交的,反正输入MYSQL的用的着的就转,好像不转的话
abc
这不就惨了?
我不知道啊,就是表单提交的,反正输入MYSQL的用的着的就转,好像不转的话
abc
这不就惨了?
这个是要转的,不然就出错了。
入库转一下即可,出库显示就不需要了。
Examples
Example 1. mysql_escape_string() example
$item = "Zak's Laptop";
$escaped_item = mysql_escape_string($item);
printf("Escaped string: %s\n", $escaped_item);
?>
The above example will output:
Escaped string: Zak\'s Laptop
Notes
Note: mysql_escape_string() does not escape % and _.
See Also
mysql_real_escape_string()
addslashes()
The magic_quotes_gpc directive.
怎么转没了
44是新输入的,怎么空了?
44是新输入的,怎么空了?
你看下mysql_escape_string这个函数后面都说了是string,你却给他个数组。。你接收的表单一个一个转完之后再入库!
嗯谢谢!就是不知道大印哥为什么发些多余代码
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn