1--TEST--
2public static array PDO::getAvailableDrivers ( void );
3array pdo_drivers ( void );
4--SKIPIF--
5<?php require 'skipif.inc'; ?>
6--CREDITS--
7marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
8--FILE--
9<?php
10print((is_array(PDO::getAvailableDrivers())) ? ("yes") : ("Test failed"));
11?>
12--EXPECT--
13yes
14