README
描述
创建HTML元素的一种简单方法
如何使用
echo html("a")->href("https://google.com")->text("Hello world!");
//<a href="https://google.com">Hello world</a>
echo html("div")->button->class("btn btn-xs")->type("submit")->text("Submit");
//<div><button class="btn btn-xs" type="submit">Submit</button></div>