添加curl扩展模块

简介:

wget  http://curl.haxx.se/download/curl-7.17.1.tar.gz

tar -zxvf curl-7.17.1.tar.gz

cd curl-7.17.1

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

 make

make install

/usr/local/php-5.2.9/bin/php-config |grep config

cd /usr/local/src/php-5.2.9/

./configure --prefix=/usr/local/php-5.2.9/ --with-apxs2=/usr/local/apache2/bin/apxs --with-zlib --with-libxml-dir --enable-gd-native-ttf --enable-mbstring --with-gd=/usr/local/gd-2.0.33/ --with-mysql=/usr/local/mysql --with-freetype-dir=/usr/local/freetype-2.4.3 --with-jpeg-dir=/usr/local/jpeg-8b/ --with-png-dir=/usr/local/libpng-1.4.4/ --with-curl=/usr/local/curl

make&&make installl

不解释 +1, - -!



本文转自 houzaicunsky 51CTO博客,原文链接:http://blog.51cto.com/hzcsky/537405

相关文章
|
7月前
|
JSON PHP 数据格式
PHP curl方法封装
PHP curl方法封装
93 0
|
6月前
|
Web App开发 API PHP
PHP封装的不错的一个Curl方法
This is a PHP function named `teacher_curl` that wraps around the cURL library for making HTTP requests. The function initializes a cURL session, sets various options such as disabling SSL verification, sets headers, handles POST data
149 0
|
Linux
linux之http命令行工具curl
curl 是一个利用 URL 规则在命令行下进行文件传输工具。支持文件的上传和下载,是一个综合的传输工具,但按传统,习惯称curl为下载工具。作为一款强力工具,支持包括HTTP、HTTPS、ftp等众多协议,还支持POST、cookies、认证、从指定偏移处下载部分文件、用户代理字符串、限速、文件大小、进度条等特征。
297 0
|
测试技术 C++ Windows
Windows下VS2015编译并使用libcurl.lib静态库(curl:http客户端库c++版本)
Windows下VS2015编译并使用libcurl.lib静态库(curl:http客户端库c++版本)
1249 0
|
应用服务中间件 PHP nginx
PHP手动封装curl故障记录
对接第三方接口时http请求header头的封装和response的处理
560 0
|
应用服务中间件