Allows generate HTML Dom elements using PHP object oriented programming.
github.com/romancc9/html
Source
Issues
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT Licence 08648d925d2407f831c5b6d98df593dee6490714
This package is auto-updated.
Last update: 2025-06-12 10:04:06 UTC
This project using composer
$ composer require romancc9/html
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();