1. 程式人生 > >Linux 安裝mysqli擴展

Linux 安裝mysqli擴展

linux mysqli

1.首先到php的安裝包下,下面有一個名為ext的文件,如圖:

技術分享

切換到 cd ext目錄

技術分享

cd mysqli

技術分享

執行 /usr/local/php-5.6.30/bin/phzie

技術分享

是因為沒有安裝 php-devel

我們用yum安裝一下


yum install php-devel

再次運行phpize

 ./configure –prefix=/usr/local/mysqli –with-php-config=/usr/local/php-5.6.30/bin/php-config –with-mysqli=/usr/local/mysql/bin/mysql_config

  直接回車,不出問題就繼續。。

  make

  make test

  make install (不出錯就會顯示Installing shared extensions: /usr/local/php-5.6.30/lib/php/extensions/no-debug-non-zts-20041030/)

技術分享


看到上面畫頁就說明mysqli安裝成功 了

下面我們還要配制php.ini 擴展

技術分享

在最後面加入:extension =/usr/local/php-5.6.30/lib/php/extensions/no-debug-non-zts-20131226/

/mysqli.so

如圖:

技術分享

退出保存,重啟nignix

phpinfo();

就可以看到mysqli擴展安裝成功了

技術分享

本文出自 “xiaofu” 博客,請務必保留此出處http://xiaofu520.blog.51cto.com/3016738/1948497

Linux 安裝mysqli擴展