1. Go to this page and download the library: Download particletree/pqp 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/ */
particletree / pqp example snippets
$console = new Particletree\Pqp\Console();
$profiler = new Particletree\Pqp\PhpQuickProfiler();
$profiler->setConsole($console);
// let the application do its thing
$console->log('Hello World');
$console->logSpeed();
// after the app shutdown - will spew out HTML
$profiler->display();