PHP code example of r-berto811 / symfony-debug

1. Go to this page and download the library: Download r-berto811/symfony-debug 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/ */

    

r-berto811 / symfony-debug example snippets



    $array = [1, 2, 'str'];

    $obj = new \StdClass();

    dump(1, $array, $obj);

    dd(1, $array, $obj);