PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

PDO::lastInsertId> <PDO::getAttribute
Last updated: Fri, 22 Aug 2008

view this page in

PDO::getAvailableDrivers

(No version information available, might be only in CVS)

PDO::getAvailableDrivers Return an array of available PDO drivers

Opis

array PDO::getAvailableDrivers ( void )

This function returns all currently available PDO drivers which can be used in DSN parameter of PDO::__construct(). This is a static method.

Zwracane wartości

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

Przykłady

Example #1 A PDO::getAvailableDrivers() example

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

Powyższy przykład wyświetli coś podobnego do:

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



add a note add a note User Contributed Notes
PDO::getAvailableDrivers
There are no user contributed notes for this page.

PDO::lastInsertId> <PDO::getAttribute
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites