ph编程中,处理提交数据并过滤非法字符防注入的方法.
插入数据时用addslashes()就好了,其他的再根据需要进行处理。
不管magic_quotes_gpc是on还是off,添加数据时都用addslashes(),当on时,必须使用stripslashes(),off时则不能用stripslashes()。
//提交数据,或者变量准备:
$content=addslashes(这里面是数据,不管有没单引号或者还是变量);
//插入数据到数据库,代码省略
//开始显示数据
$content=从数据库读取的数据;
if(get_magic_quotes_gpc()){ $content=stripslashes($content); }