Home > php教程 > php手册 > mqsql数据入库时重复检测函数-php

mqsql数据入库时重复检测函数-php

WBOY
Release: 2016-06-06 20:10:19
Original
929 people have browsed it

最近在研究WordPress的入库教程,WordPress入库在wordpress贴吧得到大家的帮助下,可以搞定,当然小说采集肯定得判断入库的信息是否重复,这就牵涉到入库检测重复的函数。下面的exist_check函数也是在网络上无意中看到,试了一下还可以,就拿出来与大家分享

最近在研究WordPress的入库教程,WordPress入库在wordpress贴吧得到大家的帮助下,可以搞定,当然小说采集肯定得判断入库的信息是否重复,这就牵涉到入库检测重复的函数。下面的exist_check函数也是在网络上无意中看到,试了一下还可以,就拿出来与大家分享。

mqsql数据入库时重复检测函数-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);
}
?#重复检测函数完毕
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template