Skip to content

Instantly share code, notes, and snippets.

@AlexMihov
Created July 29, 2014 23:12
Show Gist options
  • Save AlexMihov/1501dd1272fb34c8ba48 to your computer and use it in GitHub Desktop.
Save AlexMihov/1501dd1272fb34c8ba48 to your computer and use it in GitHub Desktop.
PHP Debug Bar
<?php
use DebugBar\StandardDebugBar;
$debugbar = new StandardDebugBar();
$debugbarRenderer = $debugbar->getJavascriptRenderer();
$debugbar["messages"]->addMessage("hello world!");
?>
<html>
<head>
<?php echo $debugbarRenderer->renderHead() ?>
</head>
<body>
...
<?php echo $debugbarRenderer->render() ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment