dump($variable)

Dumps the content of any variable in a human readable way for debugging

Example


$foo = array(
  'a', 'b', 'c'
);

dump($foo);

/*
array(
  'a',
  'b',
  'c'
)
*/