PHP安装CURL扩展

场景: PHP已完成安装,单独安装CURL扩展


1. 安装LIBCURL

下载安装文件 https://curl.haxx.se/libcurl/

./configure --prefix=/usr/local/bin/curl/

make && make install


2. 编译curl扩展

进入php源码文件夹,php-5.6.26/ext/curl

执行phpize,生成configure文件

./configure --with-curl=/usr/local/bin/curl/

make

把生成的curl.so放到php的扩展目录下,如/usr/local/lib/php/extensions/, 如果不清楚可以执行phpinfo找到

在php.ini中加上extension=curl.so

你可能感兴趣的:(PHP安装CURL扩展)