Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Filehandle woes

by c-era (Curate)
on Dec 11, 2001 at 01:11 UTC ( [id://130781]=note: print w/replies, xml ) Need Help??


in reply to Filehandle woes

I'm not sure if this is it (since I don't have 5.004_01 around), but this is what I think is happening.

This code works (it's bad for many reasons, but it works):

open (TEST,"test") || die $!; mysub (TEST); sub mysub { my $fh = shift; print $fh; my $txt = <$fh>; print $txt; }
as does this
package mypac; sub mysub { my $fh = shift; print $fh; my $txt = <$fh>; print $txt; } package main; open (TEST,"test") || die $!; mypac::mysub ("main::TEST");
The line mysub (TEST) is called like mysub ("TEST"). When using a filehandle, you can use a string instead of the filehandle (which is the  my $txt = <$fh>). I'm guessing that perl 5.004_01 had a shared namespace for filehandles, and later versions of perl do not.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://130781]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-26 00:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found