mysql连接不上Uncaught exception 'PDOException' with message 'could not find driver

解决方法:

windows环境:

  (1)打开php.ini配置文件;

  (2)打开扩展 extension=php_pdo_mysql.dll;

  (3)重启服务器。

linux环境:

  (1)下载编译安装pdo扩展;

  (2)打开php.ini配置文件:

    extension=pdo.so

    extension=pdo_mysql.so

  (3)重启服务器。


 

注意:linux环境的扩展是以.so结尾,而windows是以.dll结尾。


    

相关文章:

  • 2021-08-22
  • 2021-07-15
  • 2021-08-30
  • 2021-08-22
  • 2021-05-27
  • 2022-12-23
  • 2021-04-27
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-09
  • 2021-12-27
  • 2022-12-23
  • 2021-11-18
相关资源
相似解决方案