cucaxabeng/simple-html-dom

此包最新版本(dev-master)没有可用的许可证信息。

SimpleHtmlDom for Laravel 5

dev-master 2019-08-08 16:48 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:26:10 UTC


README

将 Simple html dom 库添加到 Laravel 5。更多信息:http://simplehtmldom.sourceforge.net/

安装

将以下行添加到 composer.json 文件的 require 部分:

{
    "require": {
        "cucxabeng/simple-html-dom": "dev-master"
    }
}

Laravel 配置

将服务提供者添加到 config/app.php

'providers' => array(
    ...
	'cucxabeng\HtmlDom\HtmlDomServiceProvider',
	
	//Laravel 5.1
	'cucxabeng\HtmlDom\HtmlDomServiceProvider::class',
    ...

将别名添加到 config/app.php

'aliases' => array(	
    ...
	'HtmlDom' => 'cucxabeng\HtmlDom\HtmlDom',
	
	//Laravel 5.1
	'HtmlDom' => 'cucxabeng\HtmlDom\HtmlDom::class',
    ...

使用方法

$dom = new HtmlDom('http://www.example.com');
//or
$dom = new HtmlDom('<p>Hello</p>');