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

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/muvo/html-parser

0.1.13 2017-10-08 22:53 UTC

This package is auto-updated.

Last update: 2025-09-29 02:02:01 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);