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

Re: Foreach Loop Optimization

by ikegami (Patriarch)
on Aug 01, 2007 at 15:33 UTC ( [id://630092]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $localtime = FormatTime($moduleField[2]) if $moduleField[2];
    $localtime = "n/a" unless $moduleField[2];
    
  2. or download this
    $localtime = $moduleField[2] ? FormatTime($moduleField[2]) : "n/a";
    
  3. or download this
    $_ = $headers[$dataCount];
    if( /approv/i )
    
  4. or download this
    if( $headers[$dataCount] =~ /approv/i )
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-23 22:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found