테이블에서 동적 rowspan 만들기
<table border=1>
<?php
$list= array();
$list[] = array('wr_1' =>'삼', 'wr_2' =>9, 'wr_3' => 10);
$list[] = array('wr_1' =>'사', 'wr_2' => 11, 'wr_3' => 12);
$list[] = array('wr_1' =>'일', 'wr_2' => 1, 'wr_3' => 2);
$list[] = array('wr_1' =>'이', 'wr_2' =>5, 'wr_3' => 6);
$list[] = array('wr_1' =>'일', 'wr_2' =>3, 'wr_3' => 4);
$list[] = array('wr_1' =>'삼', 'wr_2' =>7, 'wr_3' => 8);
$tr = array(); $tr_html = '';
foreach ($list as $k => $v)
$tr[$v['wr_1']][] = "<tr><td>{$v['wr_1']}</td><td>{$v['wr_2']}</td><td>{$v['wr_3']}</td></tr>";
foreach ($tr as $k => $v) {
$rows = count($v);
if ($rows > 1) {
$v = preg_replace('#<tr><td>.+?</td>#', '<tr>', $v);
$v[0] = preg_replace('/<tr>/', "<tr><td rowspan=\"$rows\">$k</td>", $v[0]);
}
$tr_html .= implode('', $v);
}
echo $tr_html;
?>
</table>
| 삼 | 9 | 10 |
| 7 | 8 | |
| 사 | 11 | 12 |
| 일 | 1 | 2 |
| 3 | 4 | |
| 이 | 5 | 6 |
댓글 5개
근데, 위 팁은 어디에 써먹는 건가요?
동적 rowspan ........생소한 개념이라...이해가... 잘..
위 배열 마구 추가해도 알아서 적용되는군요...
매번 신기한 코드 소개 시켜주셔서 정말,,,, 감사합니다.
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4946 | node.js | 6년 전 | 2617 | ||
| 4945 | node.js | 6년 전 | 2389 | ||
| 4944 | node.js | 6년 전 | 2526 | ||
| 4943 | node.js | 6년 전 | 2278 | ||
| 4942 | node.js | 6년 전 | 2260 | ||
| 4941 | node.js | 6년 전 | 2724 | ||
| 4940 | node.js | 6년 전 | 1872 | ||
| 4939 | node.js | 6년 전 | 1999 | ||
| 4938 | node.js | 6년 전 | 2461 | ||
| 4937 | node.js | 6년 전 | 2254 | ||
| 4936 | node.js | 6년 전 | 2327 | ||
| 4935 | node.js | 6년 전 | 2144 | ||
| 4934 | node.js | 6년 전 | 2453 | ||
| 4933 | node.js | 6년 전 | 2252 | ||
| 4932 | node.js | 6년 전 | 2692 | ||
| 4931 | node.js | 6년 전 | 2077 | ||
| 4930 | node.js | 6년 전 | 2003 | ||
| 4929 | node.js | 6년 전 | 8639 | ||
| 4928 | node.js | 6년 전 | 3758 | ||
| 4927 | node.js | 6년 전 | 2399 | ||
| 4926 | node.js | 6년 전 | 2509 | ||
| 4925 | node.js | 6년 전 | 2092 | ||
| 4924 | node.js | 6년 전 | 3380 | ||
| 4923 | node.js | 6년 전 | 2230 | ||
| 4922 | node.js | 6년 전 | 1997 | ||
| 4921 | node.js | 6년 전 | 2050 | ||
| 4920 | node.js | 6년 전 | 1769 | ||
| 4919 | node.js | 6년 전 | 2043 | ||
| 4918 | node.js | 6년 전 | 2184 | ||
| 4917 | node.js | 6년 전 | 2401 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기