sy/html
Composer 安装命令:
composer require sy/html
包简介
HTML components
README 文档
README
HTML components
Installation
Install the latest version with
$ composer require sy/html
Basic Usage
<?php use Sy\Component\Html\Page; $page = new Page(); $page->setTitle('Page example'); $page->setBody('Hello world!'); echo $page;
Output:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Page example</title> </head> <body> Hello world! </body> </html>
统计信息
- 总下载量: 1.63k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-09-26