Thread Verständnisfrage END Block (6 answers)
Opened by Gast at 2008-05-25 19:50

renee
 2008-05-26 00:47
#110303 #110303
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
exit bedeutet exit...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
C:\>more eintest.pl
#!/usr/bin/perl

use strict;
use warnings;

END{
print "test\n";
eval { require "nochntest.pl" };

print "nach require\n";
}

C:\>more nochntest.pl
#!/usr/bin/perl

use strict;
use warnings;

print "nochntest.pl\n";
exit;

C:\>eintest.pl
test
nochntest.pl

C:\>


Wie Du siehst, wird noch nicht einmal das "nach require" ausgegeben...
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Verständnisfrage END Block