定制 eddieace/php-simple 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

eddieace/php-simple

最新稳定版本:v1.0.4

Composer 安装命令:

composer require eddieace/php-simple

包简介

README 文档

README

Version 1.0.4

PSR-4 compatible

Updated version of the simplehtmldom for php 7.3+.

http://simplehtmldom.sourceforge.net/

Install

composer.phar

"require": {
    "eddieace/php-simple": "1.0.*"
    }

composer require

	composer require eddieace/php-simple

Usage

use Eddieace\PhpSimple\HtmlDomParser;

...
$dom = HtmlDomParser::str_get_html( $str );
or 
$dom = HtmlDomParser::file_get_html( $file_name );

$elems = $dom->find($elem_name);
...

Example

use Eddieace\PhpSimple\HtmlDomParser;

$html = HtmlDomParser::file_get_html("http://example.com/");
$results = $html->find('h1');
echo $results[0]->plaintext;

//output : Example Domain

统计信息

  • 总下载量: 59.2k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 13
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 13
  • Watchers: 2
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-11-07