Closed issue by ILadis on void-packages repository https://github.com/void-linux/void-packages/issues/21852 Description: ### System * xuname: `Void 4.19.118_1 armv7l Unknown uptodate rF` * package: `php-7.4.5_1`, `php-sqlite-7.4.5_1` ### Actual behavior I'm trying to get the PHP SQLite3 extension to work on my Raspberry PI. I installed the above packages and enabled the extension in `/etc/php/php.ini` by uncommenting `;extension=sqlite3`. Executing `php -m` does **not** list sqlite as a PHP module. Executing `php -i` does **not** mention any SQLite3 support. ### Expected behavior SQLite3 should work after installing `php-sqlite-7.4.5_1` and enabling the extension in `/etc/php/php.ini`. ### Steps to reproduce the behavior Install the above packages, enable SQLite3 extension and run `php -r 'new SQLite3("db");'`: ``` PHP Fatal error: Uncaught Error: Class 'SQLite3' not found in Command line code:1 Stack trace: #0 {main} thrown in Command line code on line 1 ```