7

My fav function from my fav programming language is my debugging companion, the print_r();

Comments
  • 2
    function wtf($this = '', $die = true){
    header('Content-type: text/html');
    echo '<pre>';
    var_dump($this);
    echo '</pre>';
    if($die) die;
    }
Add Comment