PHP code example of peanutpay / php-evadts-parser
1. Go to this page and download the library: Download peanutpay/php-evadts-parser 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/ */
peanutpay / php-evadts-parser example snippets
use PeanutPay\PhpEvaDts\Parser;
$parser = new Parser();
// Load an EvaDTS file
$parser->load(__DIR__ . "/rhevendors.eva_dts");
// Output the parsed report
echo $parser->getReport();
bash
composer