oscarotero/html-parser
最新稳定版本:v0.1.8
Composer 安装命令:
composer require oscarotero/html-parser
包简介
Parse html strings to DOMDocument
README 文档
README
Simple utility to parse html strings to DOMDocument.
composer require oscarotero/html-parser
Usage
use HtmlParser\Parser; $html = '<html><head></head><body>Hello world</body></html>'; //Convert a string to a DOMDocument $document = Parser::parse($html); //Convert a string to a DOMDocumentFragment $fragment = Parser::parseFragment('<p>Hello world</p>'); //Convert a DOMDocument or DOMDocumentFragment to a string echo Parser::stringify($document); echo Parser::stringify($fragment);
统计信息
- 总下载量: 4.53M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 18
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04