Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Retunining hash values from subroutines

by bart (Canon)
on Jun 20, 2013 at 10:51 UTC ( [id://1039942]=note: print w/replies, xml ) Need Help??


in reply to Retunining hash values from subroutines

There are a few things wrong with your approach.
  1. You return the hash when you match a line for a single user
    Instead, put the return statement at the end of the sub.
  2. You replace the contents of the hash for each user
    Instead, add a single entry in the hash for each user doing this:
    $UID_PATH{$USER} = $UID[5];

For optimization you could decide to return the hash ref, \%UID_PATH instead of a flattened list, but then you'd have to fix the script to use a hashref instead ofa hash, everywhere. (In languages like PHP and Javascript, there is no difference between a hash ref (or a hash. (AKA "associative array" in PHP and "object" in Javascript)

Log In?
Username:
Password:

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

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

    No recent polls found