-2

以下代码错误:

 if (! defined $dchash{$location}) {
    die "Unrecognized realm: $location";
    }
 elsif ($dchash{$location}) ne $realm) {
    die "Incorrect realm for host in $location, expected $dchash{$location} got $realm";
    }

syntax error at ./test.pl line 73, near ") ne"
Execution of ./test.pl aborted due to compilation errors.

验证 $realm 是否在哈希中的正确语法是什么?

4

1 回答 1

6

行中的第一个)字符elsif导致了问题。删除它应该消除该语法错误。

于 2012-12-07T00:22:26.347 回答