PHP code example of brizhanev / guber-parser
1. Go to this page and download the library: Download brizhanev/guber-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/ */
brizhanev / guber-parser example snippets
uberParser\GuberParser;
$guberParser = new GuberParser();
$guberParser->run();
$guberParser->getRecords();
uberParser\GuberParser;
use GuberParser\JSON;
$guberParser = new GuberParser();
$jsonStorage = new JSON("test.json");
$guberParser->setStorage($jsonStorage);
$guberParser->run();