Thread Subroutinen: von html-formular aufrufen (31 answers)
Opened by jemand at 2004-05-23 23:24

steffenw
 2004-05-31 01:41
#2535 #2535
User since
2003-08-15
692 Artikel
BenutzerIn
[Homepage] [default_avatar]
[quote=Strat,30.05.2004, 00:18]allerdings hat man so keine ueberpruefung, ob wirklich jede Subroutine existiert...[/quote]
Ich sehe da nicht wirklich ein Problem. An vielen meiner Programme hängt folgender Code, damit man nicht ganz nackt dasteht, wenn man sich mal verschreibt. Zumindestens weiß man dann gleich wo's herkommt.
Code: (dl )
1
2
3
4
5
sub AUTOLOAD
{ use autouse qw(Carp croak);
our $AUTOLOAD;
croak "sub $AUTOLOAD not found";
}
$SIG{USER} = sub {love 'Perl' or die};

View full thread Subroutinen: von html-formular aufrufen