Skip to content

Instantly share code, notes, and snippets.

@ocmca
Last active August 29, 2015 14:17
Show Gist options
  • Save ocmca/67676dc75db23ba461ea to your computer and use it in GitHub Desktop.
Save ocmca/67676dc75db23ba461ea to your computer and use it in GitHub Desktop.
Surround print_r with <pre></pre>
function pretty($printThis)
{
print("<pre>");
print_r($printThis);
print("</pre>");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment