1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 13:31:27 +02:00
Files
archived-php-src/ext/pdo/tests/pdo_drivers_basic.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

16 lines
313 B
PHP

--TEST--
Test normal operation of PDO::getAvailableDrivers / pdo_drivers
--CREDITS--
Amo Chohan <amo.chohan@gmail.com>
--SKIPIF--
<?php
if (!extension_loaded('pdo')) die('skip');
--FILE--
<?php
var_dump(is_array(PDO::getAvailableDrivers()));
var_dump(is_array(pdo_drivers()));
?>
--EXPECT--
bool(true)
bool(true)