PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

HTML_Table::setColGroup() | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

HTML_Table::setColGroup()

HTML_Table::setColGroup() – colgroup を設定する

Synopsis

require_once 'HTML/Table.php';

void HTML_Table::setColGroup ( mixed $colgroup = = null , mixed $attributes = = null )

Description

colgroup (と、その属性) を追加します。

Parameter

  • mixed $colgroup - 空の文字列、列の属性を表す文字列、あるいは列の属性の連想配列。

  • mixed $attributes - colgroup の属性を表す連想配列あるいは文字列。

Example

col タグを使用しない例

<?php
require_once 'HTML/Table.php';

$table =& new HTML_Table();

$colgroup '';
$attributes 'span="3" class="group1"';
$table->setColGroup($colgroup$attributes);
?>

col タグを使用する例

<?php
require_once 'HTML/Table.php';

$table =& new HTML_Table();

$colgroup = array('style="font-size: 120%;"''class="col2"''align="right"');
$attributes 'span="3" class="group1"';
$table->setColGroup($colgroup$attributes);
?>

複数の colgroup を使用する例

<?php
require_once 'HTML/Table.php';

$colgroup = array('style="font-size:120%;"''class="col2"''align="right"');
$attributes 'span="3" class="group1"';
$table->setColGroup($colgroup$attributes);

$colgroup = array(array('class' => 'col4'), array('class' => 'col5'));
$attributes 'span="2" class="group2"';
$table->setColGroup($colgroup$attributes);
?>

Note

This function can not be called statically.

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「HTML_Table::setColGroup()」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | HTML_Table::setColGroup()」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: