-1

可能重复:
为什么我不能用 Perl 的 LWP::Simple 获取 www.google.com?

下面的代码可用于在 windows 中打开源页面,

但是为什么在linux(slackware)中我不能?

#!/usr/bin/perl
print "Content-type: text/html\n\n";
use LWP::Simple;
$URL = get("http://google.com");
print $URL;
4

1 回答 1

0
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;

print "Content-type: text/html\n\n";
print get('http://google.com');

变化:

  • 总是(!)使用严格和警告。
  • 将 use 语句移动到脚本的开头。
  • 消除使用 $URL - 如果 get() 调用失败,即使没有它,您也会收到警告。
于 2012-04-21T19:17:17.340 回答