Javascript debugger
Website design
↑
PDO {
array getAvailableDrivers();
}
This function returns all currently available PDO drivers which can be used in DSN parameter of PDO->__construct(). This is a static method.
PDO->getAvailableDrivers() returns an array of PDO driver names. If no drivers are available, it returns an empty array.
<?php
print_r(PDO::getAvailableDrivers());
?>
The above example will output something similar to:
Array
(
[0] => mysql
[1] => sqlite
)