這篇文章主要介紹了php安裝擴充mysqli的實現步驟及報錯解決辦法的相關資料,希望透過本文能幫助到大家,需要的朋友可以參考下
相關mysql影片教學推薦:《mysql教學》
#php安裝擴充mysqli的實作步驟及報錯解決方法
#php安裝擴充mysqli的實作步驟及報錯解決方法
#cd php-5.3.6/ext/mysqli #/usr/local/webserver/php/bin/phpize #./configure --with-php-config=/usr/local/webserver/php/bin/php-config #make #make instal###報錯:######
checking for MySQLi support... yes checking whether to enable embedded MySQLi support... no mysql_config not found configure: error: Please reinstall the mysql distribution###加入設定######
#./configure --with-php-config=/usr/local/webserver/php/bin/php-config --with-mysqli=/usr/local/mysql/bin/mysql_config###編譯透過##########將產生的mysqli.so配置加入php.ini中######
extension=mysqli.so### ###
以上是php中mysqli的擴充安裝的實作步驟以及報錯解決辦法的詳細內容。更多資訊請關注PHP中文網其他相關文章!