%PDF- %PDF-
Direktori : /home2/vacivi36/vacivitta_bakcup/vendor/rector/rector/vendor/tracy/tracy/examples/ |
Current File : //home2/vacivi36/vacivitta_bakcup/vendor/rector/rector/vendor/tracy/tracy/examples/barDump.php |
<?php declare (strict_types=1); namespace RectorPrefix20211231; require __DIR__ . '/../src/tracy.php'; use RectorPrefix20211231\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. \RectorPrefix20211231\Tracy\Debugger::enable(\RectorPrefix20211231\Tracy\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, []]; \RectorPrefix20211231\bdump(\get_defined_vars()); \RectorPrefix20211231\bdump($arr, 'The Array'); \RectorPrefix20211231\bdump('<a href="#">test</a>', 'String'); if (\RectorPrefix20211231\Tracy\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>'; }