PHP code example of denismitr / dprint

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

    

denismitr / dprint example snippets


$a = "Stringing";
$b = 1234.2344;
$e = new Exception("Testing...");

$arr = ["Rome", "London", "Moscow", "New York"];

dprint($a, $b, $e, $arr);

ddump($a, $b, $e, $arr);