arrack/form-lib

快速生成HTML表单对象

1.1 2014-05-31 16:56 UTC

This package is not auto-updated.

Last update: 2024-09-28 15:57:01 UTC


README

生成HTML表单对象

示例

<?php
// input text box
echo FormLib::text('name', 'input your name');
echo FormLib::text('name', 'input your name', ['readonly' => true, 'size' => 5]);

// select
$options = [
    'A1' => 'AAA',
    'B1' => 'BBB'
];
echo FormLib::select('category', 'B1', $options);