Home > php教程 > php手册 > PHP安装新的扩展库

PHP安装新的扩展库

WBOY
Release: 2016-06-13 10:55:50
Original
1192 people have browsed it

在搭建LAMP环境时,apache和php都是自己手动安装的,只安装了php的默认的扩展库。在用到curl时才发现curl扩展库没有加载。

就只好手动安装了。

1.切换到我下载的php源码文件夹中。

cd php5.3.10

2.进入到curl的扩展库中

cd ext/curl

3.执行命令(我的php编译安装后放在/usr/local/php文件下)

/usr/loca/php/bin/phpize

4.执行配置curl的命令

./configure --with-php-config=/usr/loca/php/bin/php-config

--with-php-config 选项一定要加上,如果没加会报没有找到php-config错误提示

5.make & make install

6.完成后会在/usr/local/php/lib/php/extensions/no-debu-non-zts-XXXXX下生成一个curl.so的文件

将curl.so文件拷到/usr/loca/php/lib/php/extensions文件夹下(也可以不拷)

7.在php.ini配置文件中加入开启curl扩展库的指令

extension=/usr/local/php/lib/php/extensions/curl.so

8.重新启动apache服务,curl功能就可以使用了。

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template