roesch/html-format
Composer 安装命令:
composer require roesch/html-format
包简介
A simple to use HTML prettifier class written in PHP. Added as a composer library in memory of Bennett Roesch (spyrosoft)
README 文档
README
A simple to use HTML prettifier class written in PHP. Added as a composer library in memory of Bennett Roesch (spyrosoft).
Original code from: https://github.com/spyrosoft/php-format-html-output
Install
Require this package with composer using the following command:
$ composer require roesch/html-format
Example usage:
<?php
require 'vendor/autoload.php';
$html = 'Unformatted HTML string';
// initialize class
$format = new \Roesch\Format();
// use spaces at 4 length
echo $format->html($html);
// use spaces at 2 length
echo $format->html($html, true, 2);
// use tabs
echo $format->html($html, false);
Static method example usage:
<?php
require 'vendor/autoload.php';
$html = 'Unformatted HTML string';
// use spaces at 4 length
echo \Roesch\Format::HTML($html);
// use spaces at 2 length
echo \Roesch\Format::HTML($html, true, 2);
// use tabs
echo \Roesch\Format::HTML($html, false);
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 174
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-01-28