Object oriented HTML generation.

1.0.0 2015-09-01 18:30 UTC

This package is not auto-updated.

Last update: 2024-05-15 08:28:33 UTC


README

Build Status Coverage Status Dependency Status

Latest Stable Version License

This is a forkable respository

RocketPHP\HTML is a component for object oriented HTML generation.

To construct HTML – start with an instance of HTML and add tags by accessing the tag’s method on that object.

use RocketPHP\HTML\HTML;

$h = new HTML();
$div = $h->div('id="foo" class="bar"');
$div->p('Hello, World!');
echo $h;
<div id="foo" class="bar">
  <p>
    Hello, World!
  </p>
</div>