Skip to content

Instantly share code, notes, and snippets.

@furu
Created July 2, 2013 09:27
Show Gist options
  • Save furu/5907931 to your computer and use it in GitHub Desktop.
Save furu/5907931 to your computer and use it in GitHub Desktop.
<?php
/*
* 目的: print_r や var_dump をブラウザで見た場合にきれいに整形して表示する
*/
function pp($expression, $method = 'var_dump') {
echo '<pre>';
switch ($method) {
case 'print_r':
print_r($expression);
break;
case 'var_dump':
var_dump($expression);
break;
default:
throw new Exception('Invalid method');
break;
}
echo '</pre>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment