php判断mysql某数据表是否存在
$isOk=tableIsExists('piwik_archive_numeric_2011_09','eloo_stats','localhost','root','root');
if($isOk){
echo'指定的表存在';
}else{
echo'指定的表不存在';
}
functiontableIsExists($tableName,$dbName,$host,$usrName,$pwd){
$IsExists=false;
$conn=mysql_connect($host,$usrName,$pwd);
$result=mysql_list_tables($dbName);
for($i=0;$i<mysql_num_rows($result);$i++){
$each=mysql_tablename($result,$i);
//echo$each.'--->';
if($each==$tableName){
$IsExists=true;
}
}
mysql_free_result($result);
mysql_close($conn);
return$IsExists;
}
相关推荐
FellowYourHeart 2020-10-05
bianxq 2020-06-28
景泽元的编程 2020-06-21
韩学敏 2020-06-17
wuhen 2020-06-14
morexyoung 2020-06-13
lanmantech 2020-06-07
敏敏张 2020-06-06
勇往直前 2020-06-01
msmysql 2020-05-29
Noseparte 2020-05-28
zhangxiaojiakele 2020-05-25
CSDN0BLOG 2020-05-16
IBMRational 2020-05-14
Zhangdragonfly 2020-05-14
gamestart0 2020-04-10
仁鱼 2020-05-10
lijiawnen 2020-05-01
dayi 2020-04-29