33 lines
840 B
PHP
33 lines
840 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../src/tracy.php';
|
|
|
|
use Tracy\Debugger;
|
|
|
|
// For security reasons, Tracy is visible only on localhost.
|
|
// You may force Tracy to run in development mode by passing the Debugger::Development instead of Debugger::Detect.
|
|
Debugger::enable(Debugger::Detect, __DIR__ . '/log');
|
|
|
|
?>
|
|
<!DOCTYPE html><html class=arrow><link rel="stylesheet" href="assets/style.css">
|
|
|
|
<h1>Tracy: bar dump demo</h1>
|
|
|
|
<p>You can dump variables to bar in rightmost bottom egde.</p>
|
|
|
|
<?php
|
|
$arr = [10, 20.2, true, null, 'hello', (object) null, []];
|
|
|
|
bdump(get_defined_vars());
|
|
|
|
bdump($arr, 'The Array');
|
|
|
|
bdump('<a href="#">test</a>', 'String');
|
|
|
|
|
|
if (Debugger::$productionMode) {
|
|
echo '<p><b>For security reasons, Tracy is visible only on localhost. Look into the source code to see how to enable Tracy.</b></p>';
|
|
}
|