2017 © Pedro Peláez
 

library php5-simple-html

Wrapper for simple_html_dom

image

zvook/php5-simple-html

Wrapper for simple_html_dom

  • Sunday, February 12, 2017
  • by zvook
  • Repository
  • 1 Watchers
  • 0 Stars
  • 42 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 10 Versions
  • 2 % Grown

The README.md

PHP5 simple html parser

Usable wrapper for simple_html_dom, (*1)

Makes you happy to use simple_html_dom with your IDE, (*2)

Usage

Add to your composer.json, (*3)

"require": {
    "zvook/php5-simple-html": "*"
}

Example, (*4)

use SimpleHtml\Dom;

$dom = Dom::str_get_html('<html></html>');
$dom = Dom::file_get_html('http://www.google.com/');

$div = $dom->getElementById('id1');
foreach ($div->getElementByTagName('table.table-class')->find('tr') as $row) {
    $firstCell = $row->find('td', 0);
    $thirdCell = $row->find('td', 2);
    $content = $thirdCell->plaintext;
}

The Versions

12/02 2017

dev-master

9999999-dev

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

19/04 2016

1.2.0

1.2.0.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

03/02 2016

1.1.6

1.1.6.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

03/02 2016

1.1.5

1.1.5.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

02/02 2016

1.1.4

1.1.4.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

01/02 2016

1.1.3

1.1.3.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

01/02 2016

1.1.2

1.1.2.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

01/02 2016

1.1.1

1.1.1.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

01/02 2016

1.1.0

1.1.0.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom

01/02 2016

1.0.0

1.0.0.0

Wrapper for simple_html_dom

  Sources   Download

MIT

by Dmitry Zvook Klyukin

parser php html dom