PHP Fatal error: Uncaught PDOException: could not find driver

前端 未结 4 690
暗喜
暗喜 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 22:52

    In my PHP 7.4 I didn't get php.ini. Instead, I have php.ini-development and php.ini-production. So, I have created a new php.ini file only and copied the configurations into it.

    Then I have uncommented and changed the extension directory to the full installation path.

     extension_dir = "C:/php/ext"
    

    And uncommented:

     extension=pdo_mysql
    

提交回复
热议问题