Skip to content

Instantly share code, notes, and snippets.

@matesnippets
Created December 27, 2014 01:20
Show Gist options
  • Save matesnippets/192bed466081cbed54fb to your computer and use it in GitHub Desktop.
Save matesnippets/192bed466081cbed54fb to your computer and use it in GitHub Desktop.
Helper function for printr()
/**
* Prints out array in human readable form, just a helper function
* @param array $arr The wanted array to be printed
* @return array The array in human readable form
*/
function printr_func($arr)
{
echo "<pre class='printr'><code>";
print_r($arr);
echo "</code></pre>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment