0
這裏是代碼工作...問題是當某些網站不能採取IP,腳本停止。有什麼方法可以使腳本工作,甚至IP形式的某些網站不能被採取?我需要somting像在VB中錯誤恢復下一步...將服務器IP推入陣列
our $file = abs_path("site.txt");
open (FH, "< $file") or die "Can't open $file for read: $!";
our @lines;
while (<FH>) {
chomp($hostname="$_"); #change this to your hostname
our($addr)=inet_ntoa((gethostbyname($hostname))[4]);
our @newarr;
push(@newarr,$addr); }
不要使用'我們',除非被迫。使用'my'。 – ikegami 2013-03-22 04:00:05