erivello / simple-html-dom-bundle
Bundle around Simple HTML DOM library
Installs: 45 353
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 13
Open Issues: 2
Type:symfony-bundle
Requires
- php: >=5.3.3
- symfony/browser-kit: 2.*
- symfony/finder: 2.*
- symfony/form: 2.*
- symfony/framework-bundle: 2.*
- symfony/yaml: 2.*
This package is auto-updated.
Last update: 2025-03-27 23:19:24 UTC
README
This bundle provides a simple integration of the Simple HTML DOM Parser into Symfony2. Simple HTML DOM Parser is a HTML DOM parser written in PHP5+ that let you manipulate HTML, find tags on an HTML page with selectors just like jQuery and extract contents from HTML.
Installation
Installation is very easy, it makes use of Composer.
Add SimpleHtmlDomBundle to your composer.json
"require": {
"erivello/simple-html-dom-bundle": "dev-master"
}
Register the bundle in app/AppKernel.php
:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Erivello\SimpleHtmlDomBundle\ErivelloSimpleHtmlDomBundle(), ); }
Usage
You can access the SimpleHtmlDomBundle by the simple_html_dom
service:
<?php $parser = $this->container->get('simple_html_dom'); $parser->load('http://www.google.com/'); // Find all links foreach($parser->find('a') as $element) { echo $element->href . '<br/>'; }
License
The SimpleHtmlDomBundle is licensed under the MIT license.