romancc9/html

Allows generate HTML Dom elements using PHP object oriented programming.

Maintainers

Details

github.com/romancc9/html

Source

Issues

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/romancc9/html

0.1.99 2021-04-12 00:45 UTC

This package is auto-updated.

Last update: 2025-12-12 11:01:05 UTC


README

Allows generate HTML Dom elements using PHP object oriented programming.

Installation

This project using composer

$ composer require romancc9/html

Usage

Create a DIV with some text.

<?php

use Rcc\Html\Tags\Div;

$div = new Div(10);
echo (new Div())->appendText('Hello, I am a Div')->toHtml();