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

This package is auto-updated.

Last update: 2024-04-29 03:38:28 UTC


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);