HTML 表格类

表格类提供了一些方法用于根据数组或数据库结果集自动生成 HTML 的表格。

使用表格类

初始化类

跟 CodeIgniter 中的其他类一样,可以在你的控制器中使用 $this->load->library()方法加载表格类:

  1. $this->load->library('table');

一旦加载,表格类就可以像下面这样使用:

  1. $this->table

例子

下面这个例子向你演示了如何通过多维数组来创建一个表格。注意数组的第一行将会变成表格的表头(或者你也可以通过下面介绍的 set_heading() 方法来设置你自己的表头)。

  1. $this->load->library('table');
  2.  
  3. $data = array(
  4. array('Name', 'Color', 'Size'),
  5. array('Fred', 'Blue', 'Small'),
  6. array('Mary', 'Red', 'Large'),
  7. array('John', 'Green', 'Medium')
  8. );
  9.  
  10. echo $this->table->generate($data);

下面这个例子是通过数据库查询结果来创建一个表格。表格类将使用查询结果的列名自动生成表头(或者你也可以通过下面介绍的 set_heading() 方法来设置你自己的表头)。

  1. $this->load->library('table');
  2.  
  3. $query = $this->db->query('SELECT * FROM my_table');
  4.  
  5. echo $this->table->generate($query);

下面这个例子演示了如何使用分开的参数来生成表格:

  1. $this->load->library('table');
  2.  
  3. $this->table->set_heading('Name', 'Color', 'Size');
  4.  
  5. $this->table->add_row('Fred', 'Blue', 'Small');
  6. $this->table->add_row('Mary', 'Red', 'Large');
  7. $this->table->add_row('John', 'Green', 'Medium');
  8.  
  9. echo $this->table->generate();

下面这个例子和上面的一样,但是它不是使用分开的参数,而是使用了数组:

  1. $this->load->library('table');
  2.  
  3. $this->table->set_heading(array('Name', 'Color', 'Size'));
  4.  
  5. $this->table->add_row(array('Fred', 'Blue', 'Small'));
  6. $this->table->add_row(array('Mary', 'Red', 'Large'));
  7. $this->table->add_row(array('John', 'Green', 'Medium'));
  8.  
  9. echo $this->table->generate();

修改表格样式

表格类可以允许你设置一个表格的模板,你可以通过它设计表格的样式,下面是模板的原型:

  1. $template = array(
  2. 'table_open' => '<table border="0" cellpadding="4" cellspacing="0">',
  3.  
  4. 'thead_open' => '<thead>',
  5. 'thead_close' => '</thead>',
  6.  
  7. 'heading_row_start' => '<tr>',
  8. 'heading_row_end' => '</tr>',
  9. 'heading_cell_start' => '<th>',
  10. 'heading_cell_end' => '</th>',
  11.  
  12. 'tbody_open' => '<tbody>',
  13. 'tbody_close' => '</tbody>',
  14.  
  15. 'row_start' => '<tr>',
  16. 'row_end' => '</tr>',
  17. 'cell_start' => '<td>',
  18. 'cell_end' => '</td>',
  19.  
  20. 'row_alt_start' => '<tr>',
  21. 'row_alt_end' => '</tr>',
  22. 'cell_alt_start' => '<td>',
  23. 'cell_alt_end' => '</td>',
  24.  
  25. 'table_close' => '</table>'
  26. );
  27.  
  28. $this->table->set_template($template);

注解

你会发现模板中有两个 "row" 代码块,它可以让你的表格每行使用交替的颜色,或者其他的这种隔行的设计元素。

你不用设置整个模板,只需要设置你想修改的部分即可。在下面这个例子中,只有 table 的起始标签需要修改:

  1. $template = array(
  2. 'table_open' => '<table border="1" cellpadding="2" cellspacing="1" class="mytable">'
  3. );
  4.  
  5. $this->table->set_template($template);

你也可以在配置文件中设置默认的模板。

类参考

  • _class _CI_Table
    • $function = NULL
    • 允许你指定一个原生的 PHP 函数或一个有效的函数数组对象,该函数会作用于所有的单元格数据。
  1. $this->load->library('table');
  2.  
  3. $this->table->set_heading('Name', 'Color', 'Size');
  4. $this->table->add_row('Fred', '<strong>Blue</strong>', 'Small');
  5.  
  6. $this->table->function = 'htmlspecialchars';
  7. echo $this->table->generate();

上例中,所有的单元格数据都会先通过 PHP 的 htmlspecialchars() 函数,结果如下:

  1. <td>Fred</td><td>&lt;strong&gt;Blue&lt;/strong&gt;</td><td>Small</td>
  • generate([$table_data = NULL])

参数:

  1. - **$table_data** (_mixed_) -- Data to populate the table rows with返回:

HTML table返回类型:string

返回生成的表格的字符串。 接受一个可选的参数,该参数可以是一个数组或是从数据库获取的结果对象。

  • setcaption($caption_)

参数:

  1. - **$caption** (_string_) -- Table caption返回:

CI_Table instance (method chaining)返回类型:CI_Table

允许你给表格添加一个标题。

  1. $this->table->set_caption('Colors');
  • setheading([$args = array()[, …_]])

参数:

  1. - **$args** (_mixed_) -- An array or multiple strings containing the table column titles返回:

CI_Table instance (method chaining)返回类型:CI_Table

允许你设置表格的表头。你可以提交一个数组或分开的参数:

$this->table->set_heading('Name', 'Color', 'Size');

$this->table->set_heading(array('Name', 'Color', 'Size'));

  • addrow([$args = array()[, …_]])

参数:

  1. - **$args** (_mixed_) -- An array or multiple strings containing the row values返回:

CI_Table instance (method chaining)返回类型:CI_Table

允许你在你的表格中添加一行。你可以提交一个数组或分开的参数:

$this->table->add_row('Blue', 'Red', 'Green');

$this->table->add_row(array('Blue', 'Red', 'Green'));

如果你想要单独设置一个单元格的属性,你可以使用一个关联数组。关联数组的键名 data 定义了这个单元格的数据。其它的键值对 key => val 将会以 key='val' 的形式被添加为该单元格的属性里:

$cell = array('data' => 'Blue', 'class' => 'highlight', 'colspan' => 2);$this->table->add_row($cell, 'Red', 'Green');

// generates// <td class='highlight' colspan='2'>Blue</td><td>Red</td><td>Green</td>

  • makecolumns([$array = array()[, $collimit = 0]])

参数:

  1. - **$array** (_array_) -- An array containing multiple rows&#39; data
  2. - **$col_limit** (_int_) -- Count of columns in the table返回:

An array of HTML table columns返回类型:array

这个函数以一个一维数组为输入,创建一个多维数组,它的深度(译注:不是行数,而是每一行的元素个数)和列数一样。这个函数可以把一个含有多个元素的数组按指定列在表格中显示出来。参考下面的例子:

$list = array('one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', 'twelve');

$new_list = $this->table->make_columns($list, 3);

$this->table->generate($new_list);

// Generates a table with this prototype

<table border="0" cellpadding="4" cellspacing="0"><tr><td>one</td><td>two</td><td>three</td></tr><tr><td>four</td><td>five</td><td>six</td></tr><tr><td>seven</td><td>eight</td><td>nine</td></tr><tr><td>ten</td><td>eleven</td><td>twelve</td></tr></table>

  • settemplate($template_)

参数:

  1. - **$template** (_array_) -- An associative array containing template values返回:

TRUE on success, FALSE on failure返回类型:bool

允许你设置你的模板。你可以提交整个模板或部分模板。

  1. $template = array(
  2. 'table_open' => '<table border="1" cellpadding="2" cellspacing="1" class="mytable">'
  3. );
  4.  
  5. $this->table->set_template($template);
  • setempty($value_)

参数:

  1. - **$value** (_mixed_) -- Value to put in empty cells返回:

CI_Table instance (method chaining)返回类型:CI_Table

用于设置当表格中的单元格为空时要显示的默认值。例如,设置一个不换行空格(NBSP,non-breaking space):

  1. $this->table->set_empty("&nbsp;");
  • clear()

返回:CI_Table instance (method chaining)返回类型:CI_Table

使你能清除表格的表头和行中的数据。如果你需要显示多个有不同数据的表格,那么你需要在每个表格生成之后调用这个函数来清除之前表格的信息。例如:

$this->load->library('table');

$this->table->set_heading('Name', 'Color', 'Size');$this->table->add_row('Fred', 'Blue', 'Small');$this->table->add_row('Mary', 'Red', 'Large');$this->table->add_row('John', 'Green', 'Medium');

echo $this->table->generate();

$this->table->clear();

$this->table->set_heading('Name', 'Day', 'Delivery');$this->table->add_row('Fred', 'Wednesday', 'Express');$this->table->add_row('Mary', 'Monday', 'Air');$this->table->add_row('John', 'Saturday', 'Overnight');

echo $this->table->generate();