Skip to content

Instantly share code, notes, and snippets.

@farik92
Forked from tokudu/pretty_print.php
Created November 25, 2024 11:36
Show Gist options
  • Select an option

  • Save farik92/3dfbecfd936c7b90fa65c66288567097 to your computer and use it in GitHub Desktop.

Select an option

Save farik92/3dfbecfd936c7b90fa65c66288567097 to your computer and use it in GitHub Desktop.
A function to pretty print a associative array in PHP
<?php
function debug($var = false) {
echo "\n<pre style=\"background: #FFFF99; font-size: 10px;\">\n";
$var = print_r($var, true);
echo $var . "\n</pre>\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment