mysql数据入库时重复检测函数-php.这个函数的功能就是判断要加入的数据,数据库的一个表的其中的指定字段是否已经存在相同数据了。存在函数返回1,反则0.
#入库时是否重复检测函数,若存在返回1,不存在就返回0.使用时要注意取反
function exist_check($data,$table,$field){
$result=mysql_query(“select * from $table”);
$sql=mysql_fetch_array($result);
$result_check=0;#先假设是没有重复的
do {
if($data==$sql[$field]){
$result_check=true;
break;
}
}while($sql=mysql_fetch_array($result));
return($result_check);
}
#重复检测函数完毕
————————————————————–
#入库时是否重复检测函数,若存在返回1,不存在就返回0.使用时要注意取反
function exist_check($data,$table,$field){
$result=mysql_query("select * from $table");
$sql=mysql_fetch_array($result);
$result_check=0;#先假设是没有重复的
do {
if($data==$sql[$field]){
$result_check=true;
break;
}
}while($sql=mysql_fetch_array($result));
return($result_check);
}
#重复检测函数完毕
http://www.youthtribe.com/archives/766 转载请保留链接,谢谢
现在想写个php采集,入库的时候 会重复,看来用用 这个函数。
好用不好用还是希望你能给我个回复哈