如何使用 PDO 在 PHP 中获取 MySQL 数据库列表?

2021-12-26 00:00:00 php mysql pdo

我想知道如何使用 PDO 在 PHP 中获取 MySQL 数据库列表而不必先连接到数据库(我的意思是 dsn 中没有 dbname)?

I wonder how can I get the list of MySQL databases in PHP using PDO without having to connect to a database first ( I mean no dbname in dsn )?

通常我曾经使用函数 mysql_list_dbs() 但我不再以这种方式使用 mysql.

Usually I used to use the function mysql_list_dbs() but I no longer use mysql this way.

推荐答案

您可以使用

show databases

或对 information_schema 的查询:

or a query on the information_schema:

select schema_name from information_schema.schemata

相关文章