jamesthe1 / mini-html-builder
A miniature HTML builder.
dev-main
2026-05-18 02:15 UTC
Requires
- php: >=8.4
This package is auto-updated.
Last update: 2026-05-18 02:18:40 UTC
README
This composer package creates a simple HTML builder for PHP.
API
The API can be found in the single builder.php file, as it contains detailed doc comments in the form of DocBlocks.
Example
$htmlroot = html_quick_setup("My website", "./favicon.ico", "./style.css"); $body = $htmlroot->get_child_by_tag("body"); // All objects are passed by reference. $body->add_child(new html_element("p", "Hello world!", $attributes = [ 'class' = 'main-text', 'id' = 'first-text' ])); html_print($htmlroot);