Skip to content

Instantly share code, notes, and snippets.

@norcross
Last active October 3, 2015 05:37
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norcross/2400887 to your computer and use it in GitHub Desktop.
Save norcross/2400887 to your computer and use it in GitHub Desktop.
Wrap print_r in a 'pre' tag
<?php
function preprint($s, $return = false) {
$code = '<pre>';
$code .= print_r($s, 1);
$code .= '</pre>';
if ($return)
return $code;
else
print $code;
}
// USAGE: preprint( $array );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment