Thread Frage zu "use strict;"
(2 answers)
Opened by docsnyder at 2006-10-23 12:21
[quote=docsnyder,23.10.2006, 10:21]Zeile 182 ist
Code: (dl
)
$lockHandles{$lockFile} = FD if ( ($rc=flock(FD, LOCK_EX | LOCK_NB)) ); du musst perl auch sagen, dass das ein filehandle ist. in flock() und anderen funktionen weiss perl das. Code: (dl
)
$lockHandles{$lockFile} = *FD if $rc=flock(FD, LOCK_EX | LOCK_NB); 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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |