Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

clobucks/php-simple-html-dom

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

php-simple-html-dom-parser

Version 1.5.2

Adaptation for Composer and PSR-0 of:

A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.

Fixed for php 7+

http://simplehtmldom.sourceforge.net/

Install

composer.phar

 "repositories": [
  {
    "type": "vcs",
    "url": "https://github.com/clobucks/php-simple-html-dom"
  }
],
"require": {
    "clobucks/php-simple-html-dom-parser": "1.5.2"
}

Usage

use Enemis\PhpSimpleHtmlDom;

...
$dom = HtmlDomParser::str_get_html( $str );
or 
$dom = HtmlDomParser::file_get_html( $file_name );

$elems = $dom->find($elem_name);
...

About

php 7+ fork of php-simple-html-dom

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%