muvo / html-parser
There is no license information available for the latest version (0.1.13) of this package.
A simple parser for HTML pages
0.1.13
2017-10-08 22:53 UTC
Requires
- php: >=7.0
- ext-dom: *
- guzzlehttp/guzzle: ^6.3
- monolog/monolog: *
README
<?php
require_once __DIR__ . '/vendor/autoload.php';
$parser = new \muvo\www\parser\XPath([
'kino' => '//*[@id="topls"]/a',
]);
$r = $parser->parse('http://gidonline.club');
print_r($r);