为什么我会在“autodie”之后获得不同的输出?
#!/usr/bin/env perl
use warnings;
use 5.012;
use utf8;
use open ':encoding(utf-8)';
use open ':std';
open my $fh, '>', 'test.txt' or die $!;
say $fh 'käse';
close $fh;
open my $fh1, '<', 'test.txt' or die $!;
while ( my $row = readline( $fh1 ) ) {
print $row;
}
close $fh1;
use autodie;
open my $fh2, '<', 'test.txt';
while ( my $row = readline( $fh2 ) ) {
print $row;
}
close $fh2;
# Output:
# käse
# käse
答案 0 :(得分:17)
除非有人提出更好的理由,否则这似乎与autodie
pragma相关的open
错误。
将上次打开更改为open my $fh2, '<:utf8', 'test.txt';
可修复系统上的问题。所以这可能是一个临时工作。
我刚检查了RT,这是一个注册的错误:
https://rt.cpan.org/Public/Bug/Display.html?id=54777
看起来它与每个编译指示有关,使用不同的方法重载open
函数。