Dumps the content of any variable in a human readable way for debugging
$foo = array( 'a', 'b', 'c' ); dump($foo); /* array( 'a', 'b', 'c' ) */