Last Updated: February 25, 2016
·
612
· tlackemann

"Nicer" print_r

function printr($array) {
  echo '<pre>';
  print_r($array);
  echo '</pre>';
}