So installieren Sie mysqli in php7: 1. Installieren Sie die mysqli-Erweiterung über make install. 2. Suchen Sie den Pfad zu php.ini über phpinfo. 3. Kommentieren Sie php_mysqi.dll.
Die Betriebsumgebung dieses Artikels: Windows 7-System, PHP-7.1.5, Dell G3.
php7 Wie installiere ich MySQLi?
centos php7 Erfahrung mit der Installation der MySQLi-Erweiterung
Als ich den neuen Server konfigurierte, stellte ich fest, dass PHP keine Verbindung zu MySQL herstellen konnte. Entdeckt über phpinfo. Die entsprechende Konfiguration von mysqli wird überhaupt nicht angezeigt. Nach einer Reihe von Studien. Zusammengefasst. :
Schritt eins:
Es gibt keine MySQL-Konfiguration in phpinfo, da MySQL bei der Installation von PHP7 nicht konfiguriert wurde
Methode zur PHP-Installation: wget http://cn2.php.net/distributions/php-7.1.5.tar .gz
tar zxvf php-7.1.5.tar.gz cd php-7.1.5 ./configure --with-php-config=/usr/local/php/bin/php-config --with-mysqli=/usr/bin/mysql_config 注:/usr/bin/mysql_config 这个路径为自己的mysql_config路径 可通过 find -name mysql_config查找 make && make install cp php.ini-development /usr/local/lib/php.ini cp sapi/fpm/init.d.php-fpm /etc/init.d/php7-fpm chmod +x /etc/init.d/php7-fpm cd /usr/local/php/etc cp php-fpm.conf.default php-fpm.conf cp php-fpm.d/www.conf.default php-fpm.d/www.conf /etc/init.d/php7-fpm start 启动php
Nach der Installation werden Sie feststellen, dass phpinfo mysqli hat
Schritt 2: Installieren Sie die MySQLi-Erweiterung
Methode:
cd /usr/local/php-7.1.5/ext/mysqli //到php文件ext下的mysqli /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config --with-mysqli=/usr/bin/mysql_config
Hinweis: Der Pfad usr/bin/mysql_config ist der gleiche wie im ersten Schritt
make make test make install
Jetzt sollte Mysqli erweitert worden sein
Schritt 3:
Ändern Sie php.ini
Finden Sie den Pfad zu php.ini über phpinfo. Ändern Sie php.ini. Kommentieren Sie php_mysqi.dll aus
Ende!
Empfohlenes Lernen: „PHP-Video-Tutorial“
Das obige ist der detaillierte Inhalt vonSo installieren Sie MySQLi in PHP7. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!