PHP code example of konafets / typo3_debugbar

1. Go to this page and download the library: Download konafets/typo3_debugbar 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/ */

    

konafets / typo3_debugbar example snippets



    try {
        throw new Exception('foobar');
    } catch (Exception $e) {
        debugBar()->addThrowable($e);
    }

These will be shown in the Exception pane.

Add messages
^^^^^^^^^^^^

.. code:: php

    debugBar()->info($object);
    debugBar()->error('Error!');
    debugBar()->warning('Watch out…');
    debugBar()->addMessage('Another message', 'mylabel')


    debugBar()->startMeasure('render', 'Time for rendering');
    debugBar()->stopMeasure('render');
    debugBar()->addMeasure('now', TYPO3_START, microtime(true));
    debugBar()->measure('My long operation', function() {
        // Do something…
    });
    debugbar_debug($value)


    startMeasure('render', 'Time for rendering');
    stopMeasure('render');
    addMeasure('now', TYPO3_START, microtime(true));
    measure('My long operation', function() {
        // Do something…
    })