1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
archived-php-src/ext/pdo_mysql/tests/PDO_getAvaliableDrivers.phpt
T
2018-02-04 17:26:37 +01:00

14 lines
344 B
PHP

--TEST--
public static array PDO::getAvailableDrivers ( void );
array pdo_drivers ( void );
--SKIPIF--
<?php require 'skipif.inc'; ?>
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
--FILE--
<?php
print((is_array(PDO::getAvailableDrivers())) ? ("yes") : ("Test failed"));
?>
--EXPECT--
yes