dejurin/php-table-generate

CodeIgniter 的简单 PHP HTML 表格生成器。

1.0.0 2022-06-04 21:34 UTC

This package is auto-updated.

Last update: 2024-09-05 16:37:48 UTC


README

Packagist: https://packagist.org.cn/packages/dejurin/php-table-generate

CodeIgniter 的简单 PHP HTML 表格生成器。

安装

通过 Composer 安装此包。

composer require dejurin/php-table-generate

或者编辑你的项目 composer.json 文件,添加 dejurin/php-table-generate 依赖,然后运行 composer update

"require": {
    "dejurin/php-table-generate": "^1.0.0"
}

示例

$table = new Dejurin\PHPTableGenerate();

$table->set_heading('Currency', 'Amount', 'Color');

$data = [
    [
        [
            'data' => 'Dollar',
            'td' => 'th',
            'scope' => 'row',
            'class' => 'style'
        ],  
        100,
        '#85bb65',
    ],
];

echo $table->generate($data);

/* 
<table border="0" cellpadding="4" cellspacing="0">
<thead>
<tr>
<th>Currency</th><th>Amount</th><th>Color</th></tr>
</thead>
<tbody>
<tr>
<th class="style" scope="row">Dollar</th><td>100</td><td>#85bb65</td></tr>
</tbody>
</table>
*/

许可证

此源代码根据 MIT 许可证分发。

赞助商

https://currencyconvert.online/