Skip to content

Instantly share code, notes, and snippets.

@antoniocosentino
Last active February 1, 2018 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antoniocosentino/bc9e97d75a4ad6d02435d10f0658790e to your computer and use it in GitHub Desktop.
Save antoniocosentino/bc9e97d75a4ad6d02435d10f0658790e to your computer and use it in GitHub Desktop.
The most simple, stupid and useful PHP function in the world.
<?
function kprint($string){
echo '<pre>';
print_r($string);
echo '</pre>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment