Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Re: Re: open failure code

by jweed (Chaplain)
on Nov 27, 2003 at 02:50 UTC ( [id://310452]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: open failure code
in thread open failure code

Though this works, the ternary operator, like the grep and map operators, should not really be use in void context.
if (open(FH,"<".$log) { print "opened\n"; } else { print "unable to open $!\n"; }
is preferred.


Who is Kayser Söze?

Replies are listed 'Best First'.
Re: Re: Re: Re: open failure code
by davido (Cardinal) on Nov 27, 2003 at 05:47 UTC
    Of course the same could be done just with proper logical short circuit operators. Prefer the low-precedence ones for this sort of thing:

    open FH, "<", $log and print "Success\n" or print "Failure\n";

    That avoids trinaries and if/else's.


    Dave


    "If I had my life to live over again, I'd be a plumber." -- Albert Einstein

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (None)
    As of 2024-04-25 01:13 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found