Fungsi pra untuk PHP

function pre($args=null) {
  echo '<pre>';
  print_r($args);
  echo '</pre>';
}
Victorious Vole