程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP獲取MySQL數據庫裡所有表的實現代碼

PHP獲取MySQL數據庫裡所有表的實現代碼

編輯:關於PHP編程

代碼如下:

function list_tables($database)

{

$rs = mysql_list_tables($database);

$tables = array();

while ($row = mysql_fetch_row($rs)) {

$tables[] = $row[0];

}

mysql_free_result($rs);

return $tables;

}

但由於mysql_list_tables方法已經過時,運行以上程序時會給出方法過時的提示信息,如下:

復制代碼 代碼如下:

Deprecated: Function mysql_list_tables() is deprecated in … on line xxx

一個處理辦法是在php.ini中設置error_reporting,不顯示方法過時提示信息

復制代碼 代碼如下:

error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED

另一個方法是使用PHP官方推薦的替代做法:

復制代碼 代碼如下:

function list_tables($database)

{

$rs = mysql_query("SHOW TABLES FROM $database");

$tables = array();

while ($row = mysql_fetch_row($rs)) {

$tables[] = $row[0];

}

mysql_free_result($rs);

return $tables;

}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved