mysql 转义函数谁给小弟一个
PHP mysql 转义函数谁给小弟一个,查询的时候好像还要反转义函数,赐教!
<>之类的符号应该能转吧
------解决方案--------------------
这个是要转的,不然就出错了。
入库转一下即可,出库显示就不需要了。
Examples
Example 1. mysql_escape_string() example
<?php
$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.
------解决方案--------------------
你看下mysql_escape_string这个函数后面都说了是string,你却给他个数组。。你接收的表单一个一个转完之后再入库!