PHP code example of aacp / chilldebug
1. Go to this page and download the library: Download aacp/chilldebug 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/ */
aacp / chilldebug example snippets
tion a_test($str)
{
echo "\nHi: $str";
}
function b_test($str)
{
echo "\nHi: $str";
}
function c_test($str)
{
echo "\nHi: $str";
}
$config = new \ChillDebug\Configuration();
$config->dumpDebugFiles = true;
$config->generateHtmlView = true;
//$config->reportsPath = '/ABSOLUTE/PATH/TO/DUMP/FILES';
$debugger = new \ChillDebug\Debugger();
$debugger->enable();