此包最新版本(0.3)没有可用的许可证信息。

PHP的简单HTML构建器

0.3 2015-07-26 11:02 UTC

This package is not auto-updated.

Last update: 2024-10-02 10:32:35 UTC


README

$builder = new Dushica\Html\Builder;

// By default are 'input' and 'br'
$builder->setNoClose(['input', 'br', 'hr']);

//Add one more tag that not must be closed
$builder->addNoClose('link');

//Format html code, by default is true
$builder->minify = false;

$builder
    ->html()

        ->body()
            
            ->text('Insert your Firstname: ')
            
            ->br()
            
            ->input(['placeholder'=>'Firstname'])
            
            ->hr()
            
            ->text('Insert your Lastname: ')
            
            ->br()
            
            ->input(['placeholder'=>'Lastname'])

        ->end()
    
    ->end();

echo $builder;