If you open a file using a filehandle, you can create a reference to it (by creating a reference to the typeglob) and then pass the reference to subs:
open( FH, '>', $filename ) or die $!;
my $ref2fh = \*FH;
foo( $ref2fh );
My preferred method, though, is to open the file using a lexical variable (which eliminates the typeglob business):
open( my $fh, '>', $filename ) or die $!;
foo( $fh );
See the section entitled "File and directory handles can be autovivified" in perldelta for perl 5.6 for more info on opening files using scalar variables (perl56delta on CPAN). This info is also in perlopentut under "Indirect Filehandles".
HTH
Update: added a link for perldelta
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.