예제 #1
0
/**
* Get tables of a database
*
* @deprecated
*/
function get_tables(&$db)
{
    if (!class_exists('phpbb_db_tools')) {
        global $phpbb_root_path, $phpEx;
        require $phpbb_root_path . 'includes/db/db_tools.' . $phpEx;
    }
    $db_tools = new phpbb_db_tools($db);
    return $db_tools->sql_list_tables();
}