Thread Modul-Einbindung mit eval (40 answers)
Opened by bianca at 2011-03-28 18:38

pq
 2011-03-28 18:02
#147004 #147004
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
umgekehrte logik. auch das hatten wir schonmal. die variable darf vor dem BEGIN nicht initialisiert werden.
Code (perl): (dl )
1
2
3
4
5
my $zeitkorrektur_modul;
BEGIN {
    eval "use Win32::UTCFileTime_Foo qw (:globally); 1;"
        and $zeitkorrektur_modul = 1;
}
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 Modul-Einbindung mit eval