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,不顯示方法過時提示信息
1 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;