PHP Fatal error: Uncaught PDOException: could not find driver

前端 未结 4 682
暗喜
暗喜 2021-01-17 22:24

I have been trying to connect to MySQL from PHP using PDO. However, I get this error message:

PHP Fatal error: Uncaught PDOException: could not find

4条回答
  •  时光取名叫无心
    2021-01-17 23:06

    To use different drivers you need to install them. On Windows you simply uncomment a line in php.ini:

    extension=php_pdo_mysql.dll
    

    On Linux you install the extension with the package manager:

    sudo apt install php7.1-mysql
    

提交回复
热议问题