Is there a PHP command I can use to determine if PDO is enabled or disabled?
I know I an manually run phpinfo() and eyeball it, but I have a script I run various web
How about
if (in_array('pdo', get_loaded_extensions())) { ... pdo is there ... }