码迷,mamicode.com
首页 >  
搜索关键字:curl elinks    ( 5065个结果
使用curl 下载HTML
简单的一个curl小例子:#include #include #include #include #include #define BUF_SIZE 1024 * 100using namespace std;string DownloadString(char* url);int main(int...
分类:Web程序   时间:2014-05-12 02:55:46    阅读次数:394
vc编译 curl 7.36.0
CURL邮件列表中提到官方最新版本的windows devel包中缺少文件,而我又用不到https,所以我就自己下载源码包来编译了 下载源码包:http://curl.haxx.se/download/curl-7.36.0.tar.gz 解压包: tar -zxvfcurl-7.36.0...
分类:其他好文   时间:2014-05-12 02:50:35    阅读次数:271
在CentOS上安装Git(转)
CentOS的yum源中没有git,只能自己编译安装,现在记录下编译安装的内容,留给自己备忘。确保已安装了依赖的包yum install curl yum install curl-devel yum install zlib-devel yum install openssl-devel yum ...
分类:其他好文   时间:2014-05-09 22:59:31    阅读次数:391
vc2008构建和使用libcurl静态库
1>下载CURL源代码curl-7.26.0.zip2>用VC2008/2005打开工程curl-7.26.0\lib\libcurl.vcproj,转换下工程并构建,可以直接编译成功!3>新建个控制台工程测试下刚才编译的静态库libcurl.lib,可以在libcurl\curl-7.26.0\d...
分类:其他好文   时间:2014-05-09 16:53:01    阅读次数:556
下载android 源码
http://source.android.com/source/downloading.html1.下载repo官网:curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo目前我啥下载不了。...
分类:移动开发   时间:2014-05-09 12:31:27    阅读次数:397
PHP CURL HTTPS POST
PHP CURL HTTPS POSTfunction vpost($url,$data){ // 模拟提交数据函数 $curl = curl_init(); // 启动一个CURL会话 curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址 curl_se...
分类:Web程序   时间:2014-05-08 21:04:59    阅读次数:368
Fatal error: Maximum execution time of 30 seconds exceeded in
Fatal error: Maximum execution time of 30 seconds exceeded inC:\Program Files\Apache Software Foundation\Apache2.2\htdocs\code\curl\work\work3.phpon l...
分类:其他好文   时间:2014-05-07 16:53:31    阅读次数:338
(六)、获取Keystone token的三种方式
让我们简单Let’s take a look at three (very basic) ways to get a scoped token from Keystone (theOpenStack Identity Project). Keep in mind that these are just a few ways you can go about this. Before tryin...
分类:其他好文   时间:2014-05-06 19:30:32    阅读次数:359
PHP用CURL伪造IP和来源
以前没有这么搞过。今天群里一个朋友在问这个问题。查了下,CURL确实很强悍的可以伪造IP和来源。1.php 请求 2.php 。1.php代码:$ch = curl_init();curl_setopt($ch, CURLOPT_URL, "http://localhost/2.php");curl...
分类:Web程序   时间:2014-05-06 18:06:05    阅读次数:422
curl
目前为目最全的CURL中文说明了,学PHP的要好好掌握.有很多的参数.大部份都很有用.真正掌握了它和正则,一定就是个采集高手了.PHP中的CURL函数库(Client URL Library Function)curl_close - 关闭一个curl会话 curl_copy_handle - 拷贝...
分类:其他好文   时间:2014-05-06 10:19:24    阅读次数:510
5065条   上一页 1 ... 503 504 505 506 507 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!