Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: print_r

by virtualsue (Vicar)
on Sep 25, 2007 at 08:53 UTC ( [id://640876]=note: print w/replies, xml ) Need Help??


in reply to print_r

I don't use PHP, and I'm probably not the only one. Could you please add a brief description of what 'print_r' does?

Replies are listed 'Best First'.
Re^2: print_r
by mwah (Hermit) on Sep 25, 2007 at 09:42 UTC
    virtualsue I don't use PHP, and I'm probably not the only one. Could you please add a brief description of what 'print_r' does?

    It prints out data items and references, it traces complex data structures down to the last item (arrays, hashes), example (PHP, so be warned!):

    <?php $record = array( 'convict' => array( 'name' => 'virtualsue', 'link' => 'www.perlmonks.org/?node_id +=70099'), 'penalty' => array( 'type' => '48h TV w/out breaks', 'warden'=> 'Mike Judge') ); print_r($record); ?>

    The last line produces exactly the following output:
    Array ( [convict] => Array ( [name] => virtualsue [link] => www.perlmonks.org/?node_id=70099 ) [penalty] => Array ( [type] => 48h TV w/out breaks [warden] => Mike Judge ) )
    Regards mwa
Re^2: print_r
by GhodMode (Pilgrim) on Sep 25, 2007 at 11:18 UTC
    Well, if you don't use PHP, then this probably wouldn't appeal to you anyway :) However, I linked to the print_r function documentation on php.net in the original post for this reason.
    --
    -- Ghodmode
    
    Blessed is he who has found his work; let him ask no other blessedness.
    -- Thomas Carlyle

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-19 20:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found