Skip to content

Instantly share code, notes, and snippets.

@hissy
Created July 9, 2014 03:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hissy/9e6d54b44689ad04d436 to your computer and use it in GitHub Desktop.
Save hissy/9e6d54b44689ad04d436 to your computer and use it in GitHub Desktop.
#concrete5 quick debug snippet
<?php
$req = Request::get();
if ($req->getRequestPath() == 'debug') {
// debug some stuff
exit;
}
function dump($v)
{
echo '<pre>';
var_dump($v);
echo '</pre>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment