pdo_drivers

(PHP 5 >= 5.1.0RC1)

pdo_drivers --  Return an array of available PDO drivers

Beschreibung

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_drivers() returns an array of PDO driver names. If no drivers are available, it returns an empty array.

Beispiele

Beispiel 1. A pdo_drivers() example

<?php
print_r
(pdo_drivers());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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