codeat3/inlinestyle
最新稳定版本:2.1.0
Composer 安装命令:
composer require codeat3/inlinestyle
包简介
Apply CSS stylesheets directly as inline styles to a HTML document
README 文档
README
This is a fork of the original repository (christiaan/InlineStyle)[https://github.com/christiaan/InlineStyle] by Christiaan Baartse
InlineStyle provides an easy way to apply embedded and external stylesheets directly as inline styles on the HTML tags. This is especially targetted at mail clients which mostly dont support stylesheets but do support the style attribute for HTML tags.
Installation
composer require inlinestyle/inlinestyle
Or add the following to your composer.json file
"require": {
"inlinestyle/inlinestyle": "^2.0"
}
Usage
Use composer to download required dependencies.
Import InlineStyle
use \InlineStyle\InlineStyle;
Create a new InlineStyle object from either a HTML string or HTML file.
$htmldoc = new InlineStyle("testfiles/test.html");
or
$htmldoc = new InlineStyle(file_get_contents("http://github.com"));
Apply the embedded and external stylesheets
First we'll have to extract the stylesheets from the document and then we have to apply them.
$htmldoc->applyStylesheet($htmldoc->extractStylesheets());
The second param is the base url that is used to parse the links to external stylesheets.
$htmldoc->applyStylesheet($htmldoc->extractStylesheets(null, "http://github.com"));
Applying additional stylesheets
This class can also be used to apply a given css template to each processed HTML file.
$htmldoc->applyStylesheet(file_get_contents("testfiles/external.css"));
Retrieving the modified HTML
After calling applyStylesheet various times the resulting HTML can be retrieved as a string using getHTML.
$html = $htmldoc->getHTML();
统计信息
- 总下载量: 68.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-09-06