php安裝openssl 擴充套件

gb4215287發表於2017-10-10

下載和使用的php相同版本的php原始碼包。解壓後找打ext下面的openssl 資料夾

/etc/php/bin/phpize(phpize的路徑根據各自安裝有所不同)

(如果遇到Cannot find config.m4.

  Make sure that you run /usr/local/bin/phpize in the top level source directory of the module,

到openssl目錄裡面mv config.0m4   config.m4  在執行phpize)

./configure --with-php-config=/www/wdlinux/php/bin/php-config(php-config檔案的路徑)

make

make install

最後還需要把生成的bcmath.so檔案加入到php.ini中 extesion=openssl.so(如果沒有設定extesion_dir,可能要加上全路徑,檢視phpize執行後的生成的so檔案的路徑即可, 這裡是:extension_dir=/www/wdlinux/php/lib/php/extensions/no-debug-zts- 20060613)

可能在make的時候,會遇到錯誤

錯誤:‘PHP_FE_END’未宣告(不在函式內) -----{error: ‘PHP_FE_END’ undeclared here (not in a function)}
解決方法: 原始碼有錯誤,進入php-5.3.18/ext/mcrypt目錄

sed -i 's|PHP_FE_END|{NULL,NULL,NULL}|' ./*.c

sed -i 's|ZEND_MOD_END|{NULL,NULL,NULL}|' ./*.c

再重新make && make install

我編譯後模組都在/usr/lib/php/modules,然後把php/ini檔案的模組載入到/usr/lib/php/modules 這個下面。


來源:http://blog.csdn.net/huangjianxiang1875/article/details/28149803

相關文章