Thread Hash-Inhalt auf Festplatte speichern (26 answers)
Opened by der_thomas at 2013-09-21 17:43

pq
 2013-09-26 13:47
#170675 #170675
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
letztlich könnte man es auch so machen:
Code (perl): (dl )
1
2
3
4
5
my $config_neu = eval do { 
    local $/;
    <$fh>;
}
die $@ if $@;


wieso hast du überhaupt einen eigenen block verwendet?
würde sinn machen, wenn du local $/ verwendet hättest. was man auch immer machen sollte.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Hash-Inhalt auf Festplatte speichern