如何在PDO中获取数据库名称?

2022-08-30 16:05:57
$dsn = 'mysql:dbname=testdb;host=127.0.0.1';
$user = 'dbuser';
$password = 'dbpass';

try {
    $dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
    echo 'Connection failed: ' . $e->getMessage();
}

PDO 中是否存在存储数据库名称(值)的函数或常量?我在$dbh上做了一个var_dump,找不到任何东西...testdb


答案 1

假设您使用的是 mysql,则可以选择 database() 来获取默认数据库的名称。

/* @var $pdo PDO */
$pdo->query('select database()')->fetchColumn();

答案 2

不,没有内置功能。

但是您可以扩展,解析和存储dsn,并通过某些访问器返回它class MyPdo extends PDO

class MyPdo extends PDO
{
    ...

    /**
     * @param string $dsnParameter
     * @param string|null $default
     * @throws RuntimeException
     * @return string|null
     */
    public function getDsnValue($dsnParameter, $default = NULL)
    {
        $pattern = sprintf('~%s=([^;]*)(?:;|$)~', preg_quote($dsnParameter, '~'));

        $result = preg_match($pattern, $this->dsn, $matches);
        if ($result === FALSE) {
            throw new RuntimeException('Regular expression matching failed unexpectedly.');
        }

        return $result ? $matches[1] : $default;
    }

    ...

推荐