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

Maintainers

Package info

gitlab.com/muvo/html-parser

Issues

pkg:composer/muvo/html-parser

Statistics

Installs: 10

Dependents: 0

Suggesters: 0

Stars: 0

0.1.13 2017-10-08 22:53 UTC

This package is auto-updated.

Last update: 2026-03-01 00:11:30 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);