Skip to content

Instantly share code, notes, and snippets.

@fuchao2012
Created June 15, 2015 06:29
Show Gist options
  • Select an option

  • Save fuchao2012/879f95ed41808ffe8cf7 to your computer and use it in GitHub Desktop.

Select an option

Save fuchao2012/879f95ed41808ffe8cf7 to your computer and use it in GitHub Desktop.
debug function p
// ------------------------------------------------------------------------
if ( ! function_exists('p'))
{
/**
* p
*
* used for debug
* @author fuchao2012
* @param $string
* @return dumped string into pages
*/
function p($string)
{
header('<meta charset="utf-8">');
echo '<pre>';
var_dump($string);
echo '</pre>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment