Thread Wo liegt das Modul?
(8 answers)
Opened by pktm at 2007-09-13 13:01
Das kann man auch in dem Modul verwenden. %INC ist global...
Beispiel: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 #!/usr/bin/perl use strict; use warnings; use Win32::GuiTest; use lib './perllib'; use Data::Dumper; my @array = (1..3); print Dumper \@array; Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 package Data::Dumper; use Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(Dumper); sub Dumper{ my ($arref) = @_; print "Element: $_\n" for @$arref; print $_,"\n" for keys %INC; } Code: (dl
)
1 C:\>inc_push.pl Wie man sieht, sieht auch das Modul, welche Module im Hauptprogramm geladen wurden... 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/ |