stounhandj/htmldom-laravel

1.0.0 2021-08-30 12:47 UTC

This package is auto-updated.

Last update: 2024-09-06 23:57:03 UTC


README

Total Downloads Latest Stable Version License

### 基于 Simple HTML Dom Parser 的 Laravel 8, 7, 6, ^5.5 包

安装

$ composer require stounhandj/htmldom-laravel

或者

{
    "require": {
        "stounhandj/htmldom-laravel": "^1.0.0"
    }
}

使用

  1. 使用以下命令
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>';

查看详细文档 http://simplehtmldom.sourceforge.net/manual.htm