PHP code example of guanguans / yii-var-dumper
1. Go to this page and download the library: Download guanguans/yii-var-dumper library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
guanguans / yii-var-dumper example snippets
...
'bootstrap' => [
...
'dumper',
...
],
'modules' => [
...
'dumper' => [
'class' => 'Guanguans\YiiVarDumper\Module',
// 'host' => 'tcp://127.0.0.1:9913',
],
...
],
...
dump($yourVariate);
bash
$ php yii dumper/server
bash
$ php yii dumper/server --format=html > dump.html
# or
$ php yii dumper/server -f=html > dump.html