Despite having installed PHP 7 and MySQL, your system lacks the MySQLi extension necessary for PHP database connectivity. To rectify this, follow these steps:
The previously used php5-mysql package is obsolete. Instead, install the updated package:
sudo apt-get install php-mysql
This command will automatically update both Apache and PHP 7, resolving the MySQLi extension issue.
The above is the detailed content of How to fix the missing MySQLi extension in PHP 7?. For more information, please follow other related articles on the PHP Chinese website!