Arrays / Print_Nice


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:

<?php 

// the simple function 
function print_rn($ar) { 
    echo 
"<pre>"
        
print_r($ar); 
    echo 
"</pre>"


// array example 
$ar = array("p0144"
            
"p0145"
            
"p0146"
            
"p0159"
            
"p0166"
            
"p0167"
            
"p0171"
            
"p0172"
            
"p0173"
            
"p0174"
            
"p0176"
            
"p0191"
            
"p0194"
            
"p0197"
            
"p0198"); 

// pass array to the fuction 
print_rn($ar); 
?>

Description

  Print out an array in a nice readable format.

This is very simple and most people will already know about this - but it will be very handy for those new to PHP.