我正在学习Symfony,但是我有这个问题:
当我尝试制作php bin/console make:migration
时
我有这个回报:
An exception occurred in driver: could not find driver
In Exception.php line 18:
could not find driver
In PDOConnection.php line 37:
could not find driver
我将内部服务器与server:run一起使用 我正在使用PHP 7.4.11和
php -v
给我php 7.4.11的好版本
我的文件doctrine.yaml具有:
doctrine:
dbal:
# configure these for your database server
driver: 'pdo_mysql'
server_version: '5.7'
charset: utf8mb4
default_table_options:
charset: utf8mb4
collate: utf8mb4_unicode_ci
url: '%env(resolve:DATABASE_URL)%'
和我的.env有:
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
DATABASE_URL=mysql://root:@127.0.0.1:3306/blog?serverVersion=5.7
我的EXTENSIONS = pdo_mysql处于活动状态...
我发现了很多老话题,但是没人能解决我的问题。