在用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;
- }
關於PHP獲取MySQL數據庫中所有表的代碼實現已經介紹完畢了,如果您想了解更多關於MySQL數據庫的知識,可以看一下這裡的文章:http://database.51cto.com/mysql/,相信會對您有幫助的。