PHP code example of manadinho / rpg-fast-debugger

1. Go to this page and download the library: Download manadinho/rpg-fast-debugger 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/ */

    

manadinho / rpg-fast-debugger example snippets


function ezFast(Array $data, $flag="", $host="host.docker.internal") {
    if ( RPG_LOCAL ) {
        return new Manadinho\RPGFastDebugger\RPGFast($host, $flag, $host);
    }
}

ezFast([$var1, $var2], $flag, $host);