PHP code example of muan / universal-parser

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

    

muan / universal-parser example snippets


$httpClientAdapter = new \UniversalParser\HttpClientAdapter();

$parsers = [
    'title' => \UniversalParser\Parsers\TitleParser::class,
];

$universalParser = new \UniversalParser\UniversalParser($httpClientAdapter, $parsers);

$url = 'https://laravel.com/docs/5.7/contributions';
$data = $universalParser->getData($url);