1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<?php
require 'Nette/loader.php';
use Tracy\Debugger;
Debugger::enable(Debugger::DEVELOPMENT, __DIR__ . '/log');
?>
<!DOCTYPE html><link rel="stylesheet" href="assets/style.css">
<h1>Tracy: Dumper demo</h1>
<?php
class Test
{
public $x = [10, NULL];
private $y = 'hello';
protected $z = 30;
}
$arr = [10, 20.2, TRUE, NULL, 'hello', (object) NULL, [], fopen(__FILE__, 'r')];
$obj = new Test;
dump('<a href="#">test</a>');
dump($arr);
dump($obj);
echo "<h2>With location</h2>\n";
Debugger::$showLocation = TRUE;
dump($arr);
|