stounhandj / htmldom-laravel
1.0.0
2021-08-30 12:47 UTC
Requires
- php: ^7.4 || ^8.0
This package is auto-updated.
Last update: 2024-09-06 23:57:03 UTC
README
### 基于 Simple HTML Dom Parser 的 Laravel 8, 7, 6, ^5.5 包安装
$ composer require stounhandj/htmldom-laravel
或者
{ "require": { "stounhandj/htmldom-laravel": "^1.0.0" } }
使用
- 使用以下命令
use StounhandJ\HtmldomLaravel\Htmldom; $html = new Htmldom('https://www.example.com'); // Find all images foreach($html->find('img') as $element) echo $element->src . '<br>'; // Find all links foreach($html->find('a') as $element) echo $element->href . '<br>';