PDO::getAvailableDrivers

Return an array of available PDO drivers

Beschreibung

public static array PDO::getAvailableDrivers ( void )
array pdo_drivers ( void )

This function returns all currently available PDO drivers which can be used in DSN parameter of PDO::__construct.

Rückgabewerte

PDO::getAvailableDrivers returns an array of PDO driver names. If no drivers are available, it returns an empty array.

Beispiele

Beispiel #1 A PDO::getAvailableDrivers example

<?php
print_r
(PDO::getAvailableDrivers());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Array
(
    [0] => mysql
    [1] => sqlite
)