PHP Fatal error: Uncaught PDOException: could not find driver

前端 未结 4 658
暗喜
暗喜 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:01

    Ok, somehow I had a problem with the extension itself. It helped to reinstall the MySQL extension. Here an example for PHP 7.3:

    sudo apt purge php7.3-mysql
    sudo apt install php7.3-mysql
    sudo service apache2 restart
    

提交回复
热议问题