1. Go to this page and download the library: Download lepampim/fast-dbg-php 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/ */
// Importando a biblioteca FastDbgPHP
o caso de estar no modo de desenvolvimento defina True, se não, False
FastDbgPHP::setDevelopmentMode($isDev);
// Por fim, simplesmente depure suas variáveis
$value = rand(1, 1000);
$other_value = $value - 10;
fdbg($value, $other_value);
// para maior velocidade, use:
fdbg();
// em vez de:
fdbg('##GET', '##POST');
// as duas formas mostram a mesma coisa
// Pegue o tempo inicial de referencia do código, sempre deve ser aferido no começo da página
$inicial_time = microtime(true);
// Definindo o tempo inicial de referência
FastDbgPHP::setInicialTime($inicial_time);
/* O corpo do seu código */
// Por fim, mostra o tempo usado pelo código
fdbg('##TIME');
function factorial(int $n) {
if ($n == 0 or $n == 1) {
fdbg('##TRACE');
return 1;
}
return $n * factorial($n-1);
}
fdbg(factorial(10));
$zero = 0;
fdbg($zero, `##EXIT`);
// nada a partir daqui será executado
echo 'Hello world';
echo $zero / $zero;
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.