Thread Filehandle an Funktion übergeben (5 answers)
Opened by KCobain at 2011-10-04 15:17

dgw
 2011-10-04 15:38
#152847 #152847
User since
2010-08-16
27 Artikel
BenutzerIn

user image
Ja.

Kurzes Beispiel:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
use strict ;

open( my $fh , '<' , 'beispiel.txt' ) ;
funktion( $fh ) ;
close( $fh ) ;

sub funktion {
  my ( $filehandle ) = @_ ;

  print $filehandle "Beispiel\n" ;
}


Just my 2 cents.
Daniel

View full thread Filehandle an Funktion übergeben