篇文章給大家分享的內容是關於Nginx和php安裝及配置五之LINUX用PHPIZE安裝PHP GD擴展,有著一定的參考價值,有需要的朋友可以參考一下
1、生成so檔
【1】sudo yum install php-gd2 png jpeg freetype //YUM安裝擴充功能
【2】cd /php/ext/gd //php資料夾是我當初解壓縮PHP安裝包得到的。
【3】phpize ./configure --with-png-dir --with-freetype-dir --with-jpeg-dir --with-gd
【4】./ configure --with-png-dir --with-freetype-dir --with-jpeg-dir --with-gd
【5】sudo make
【6】make install
2、拷貝php.ini檔案
引入so的dir和開啟擴充功能so
extension=gd.so //新增這一行,重啟PHP服務
3、重啟伺服器
相關推薦:
Nginx和php安裝及設定四之nginx及php啟動或重啟
以上是Nginx和php安裝及配置五之LINUX用PHPIZE安裝PHP GD擴展的詳細內容。更多資訊請關注PHP中文網其他相關文章!