PHP Code Snippet Library

 +library
+ Arrays (5)
+ Change Case
+ Count Array Values
+ Dump Highlighted
+ Print Nice
+ test some special chars
+ COM for Windows (2)
+ ClibPDF (1)
+ Image (7)
+ LDAP (9)
+ MySQL (12)
+ Regular Expressions (3)
+ String Manipulation (12)
+ Time and Date (6)
 +Snippet Options
+   Printer Friendly
 +General Options
+   Library Home
+   PHP-CSL Credits
+   PHP-CSL License
+   PHP Resource Links
+   Log in
Syntax for: Arrays / Dump Highlighted
<? 
// An alternative to print_r, this function will print an array 
// with HTML and Syntax highlighting. Could easily be extended to
// support 3D arrays.
// USAGE: echo f_arr($_SESSION);

function f_arr($arr) {
    
$fr "<font color=red size=1>";
    
$fg "<font color=green size=1>";
    
$fb "<font color=blue size=1>";
    
$fk "<font color=black size=1>";
    
$fe "</font>";
    
$l "$fg [ $fe";
    
$r "$fg ] $fe";
    
$a "$fk => $fe";
    
$out "";
    foreach(
$arr as $k=>$v){
        
$out[] = $l.$fb.$k.$fe.$r.$a.$fr.$v.$fe;
    }
    if(
is_array($out)) {
        return 
implode("<br />"$out);
    } else {
        return 
false;
    }
}
?>
 
Description for: Arrays / Dump Highlighted
An alternative to print_r, this function will print an array with HTML and Syntax highlighting. Could easily be extended to support 3D arrays.

USAGE:

echo f_arr($_SESSION);
or
if($a = f_arr($_SESSION)) {
echo "Dump of SESSION:
".$a;
}

Author's Name: Stuart Cochrane

 
Powered by: PHP Code Snippet Library V0.8