首页 > 开发 > PHP > 正文

php判断表是否存在的方法

2024-05-04 23:36:23
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php判断表是否存在的方法,实例分析了三种常见的判断表的方法,涉及php操作数据库的相关技巧,需要的朋友可以参考下

本文实例讲述了php判断表是否存在的方法。分享给大家供大家参考。具体如下:

 

 
  1. <?php 
  2. //方法一 
  3. mysql_connect('localhost','root','2260375'or die('can/'t not connect database'); 
  4. if((int)check_table_is_exist('show databases;','test')==1) 
  5. echo '该表存在'
  6. else 
  7. echo '该表不存在'
  8. function check_table_is_exist($sql,$find_table
  9. $row=mysql_query($sql); 
  10. $database=array(); 
  11. $finddatabase=$find_table
  12. while ($result=mysql_fetch_array($row,MYSQL_ASSOC)) 
  13. $database[]=$result['Database']; 
  14. unset($result,$row); 
  15. mysql_close(); 
  16. /*开始判断表是否存在*/ 
  17. if(in_array($find_table,$database)) 
  18. return true; 
  19. else 
  20. return false; 
  21. //////////////////////////////////////////////方法二 
  22. mysql_connect('localhost','root','root');  
  23. $result = mysql_list_tables('database');  
  24. $i=0;  
  25. while($i<mysql_num_rows($result)) 
  26. if ('Table_Name' == mysql_tablename($result,$i)) { 
  27. echo '存在'
  28. break
  29. }  
  30. $i++;  
  31. echo '不存在'
  32. mysql_close(); 
  33. //////////////////////////////////////方法三 
  34. $data = array(); 
  35. $dbname = '你要查询的表名'
  36. mysql_connect('localhost''root'''or die('Cann/'t connect server!'); 
  37. $result = mysql_query('show databases;'); 
  38. While($row = mysql_fetch_assoc($result)){ 
  39. $data[] = $row['Database']; 
  40. }unset($result$row); 
  41. mysql_close(); 
  42. print_r($data); 
  43. if (in_array(strtolower($dbname), $data)) 
  44. die('存在'); 
  45. else 
  46. die('不存在'); 
  47. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表