Package Data | |
---|---|
Maintainer Username: | ammadeuss |
Maintainer Contact: | raducan@ammadeuss.ro (Ammadeuss Raducan) |
Package Create Date: | 2017-02-14 |
Package Last Update: | 2019-09-04 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:03:48 |
Package Statistics | |
---|---|
Total Downloads: | 358,027 |
Monthly Downloads: | 630 |
Daily Downloads: | 3 |
Total Stars: | 38 |
Total Watchers: | 4 |
Total Forks: | 22 |
Total Open Issues: | 5 |
Laravel wrapper for the PHP Simple HTML DOM Parser package
Require this package with composer:
composer require ammadeuss/laravel-html-dom-parser
You need to add the service provider in app.php
Ammadeuss\LaravelHtmlDomParser\ServiceProvider::class,
If you want to use the facade, add this to your facades in app.php
'HTMLDomParser' => Ammadeuss\LaravelHtmlDomParser\Facade::class
$name = HTMLDomParser::str_get_html($html)->find('div.profile > span.name > span')[0]->plaintext;