免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2319 | 回复: 0
打印 上一主题 下一主题

关于curl,问个入门级的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-17 00:34 |只看该作者 |倒序浏览
本帖最后由 antonym55 于 2011-11-17 01:33 编辑

Windows 中用ppm 装了WWW-curl
use strict;
use warnings;

use WWW::Curl::Easy;

my $url = "http://www.163.com";

my $curl = WWW::Curl::Easy->new() or die "curl init failed!\n";

$curl->setopt(CURLOPT_HEADER,1);
$curl->setopt(CURLOPT_URL, $url);


# A filehandle, reference to a scalar or reference to a typeglob can be used here.
my $response_body;
$curl->setopt(CURLOPT_WRITEDATA,\$response_body);

# Starts the actual request
my $retcode = $curl->perform;

# Looking at the results...
if ($retcode == 0) {
        print("Transfer went ok\n");
        my $response_code = $curl->getinfo(CURLINFO_HTTP_CODE);
        # judge result and next action based on $response_code
        print("Received response: $response_body\n");
} else {
        # Error code, type of error, error message
        print("An error happened: $retcode ".$curl->strerror($retcode)." ".$curl->errbuf."\n");
}

运行后的出错信息
D:\Workspace\Perl>curl2.pl
Bareword "CURLOPT_HEADER" not allowed while "strict subs" in use at D:\Workspace\Perl\curl2.pl line 10.
Bareword "CURLOPT_URL" not allowed while "strict subs" in use at D:\Workspace\Perl\curl2.pl line 11.
Execution of D:\Workspace\Perl\curl2.pl aborted due to compilation errors.


出错的位置在红色文字标识的部分

看了一下 easy.pm中似乎没有 CURLOPT_HEADER,和 CURLOPT_URL

请问下,这个如何修改,谢谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP