如何在laravel中使用simple_html_dom

时间:2018-03-10 23:07:49

标签: php html dom laravel-5 simple-html-dom

我想在Laravel项目中使用simple_html_dom。但我无法将此包添加到我的项目中。

如何在laravel中使用simple_html_dom?

1 个答案:

答案 0 :(得分:4)

有几种方法,其中一种使用作曲家。从命令行运行此命令:

composer require sunra/php-simple-html-dom-parser

使用示例:

use Sunra\PhpSimple\HtmlDomParser;

$document = HtmlDomParser::str_get_html($html_text);
$document->find($selector);