如何在Ubuntu上安装SQLite PDO扩展


Answers:


29

做就是了:

sudo apt-get install php5-sqlite

下次,您可以通过以下方式找到它:

apt-cache search php | grep sqlite

1
谢谢!很高兴知道如何通过控制台搜索软件包列表。到目前为止,还没有找到如何搜索数据包的方法。
wowpatrick

@wowpatrick:不客气。
米哈尔Šrajer

不要忘记重启Apache服务器:“ sudo service apache2 restart”。您可以通过调用phpinfo()来检查是否通过php网页安装了sqlite。或通过运行“ php -m”通过命令行
1

8

在Ubuntu 16.04中没有php5-sqlite。你需要:

sudo apt-get install php7.0-sqlite
sudo service apache2 restart

4

php5-sqlite-php5的SQLite模块php-mdb2-driver-sqlite-为MDB2提供SQLite驱动程序的PHP PEAR模块


3

为了澄清起见,我最近遇到了这个问题,因为php7.2我不得不跑

sudo apt-get install php-sqlite3

确实安装了sqlite-3没有命名为php-sqlite


1

首先检查您的php版本:

php -v

然后安装扩展:

sudo apt-get install php[version-here]-sqlite3

例如,对于PHP 7.2:

sudo apt-get install php7.2-sqlite3

重新启动您的apache服务器:

sudo service apache2 restart

列出模块,它应该打印sqlite:

php -m | grep sqlite
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.