그동안 일하면서 어떻게 달력이 필요 한 작업이 하나도 없었을까요??? 아이러니 하네요 ㅎㅎㅎ
방금 하나 만들어 봤는데 유효한지 모르겠네요~
[code]
/*
* "년, 월, 일"의 초기 값을 설정한다.(전달값이 있을경우 전달값 출력)
*/
$Year = ($_REQUEST['year'])?$_REQUEST['year']:date('Y');
$Month = ($_REQUEST['month'])?str_pad($_REQUEST['month'], 2, 0, STR_PAD_LEFT):date('m');
$Day = ($REQUEST['day'])?str_pad($_REQUEST['day'], 2, 0, STR_PAD_LEFT):date('d');
/*
* 초기 조건값
*/
$FirstDayWeek = date('w', strtotime($Year.$Month.'01')); // 1일은 몇 요일?
$LastDay = date('t', strtotime($Year.$Month.'01')); // 몇일까지 있니?
$PreLastDay = date('t', strtotime("-1 month", strtotime($Year.$Month.'01'))); // 지난달은 몇일 까지 있니?
$Day = $PreLastDay - $FirstDayWeek;
$HiddenDate = true;
?>
<div class="reservation">
<table class="calendar">
<thead>
<tr class="week">
<th scope="col">일요일</th>
<th scope="col">월요일</th>
<th scope="col">화요일</th>
<th scope="col">수요일</th>
<th scope="col">목요일</th>
<th scope="col">금요일</th>
<th scope="col">토요일</th>
</tr>
</thead>
<tbody class="mon">
<?php for($m=1; $m<7; $m++) { ?>
<tr>
<?php
for($w=0; $w<7; $w++) {
if($Day >= $PreLastDay) {
$HiddenDate = false;
$Day = 0;
$PreLastDay = $LastDay;
$FullDate = '';
}
$Day++; // day 증가
$FullDate = $Year.'-'.str_pad($Month, 2, 0, STR_PAD_LEFT).'-'.str_pad($Day, 2, 0, STR_PAD_LEFT);
if($HiddenDate || date('w', strtotime($FullDate)) <> $w) {
$FullDate = '';
$HiddenDate = true;
}
?>
<td>
<div><strong>날짜:</strong> <?php echo $Day; ?></div>
<div><strong>년.월.일:</strong> <?php echo ($FullDate)?$FullDate:'해당없음'; ?></div>
<div><strong>당월에 포함된 날짜인지 판단:</strong> <?php echo ($HiddenDate)?'미포함':'포함'; ?></div>
</td>
<?php } ?>
</tr>
<?php } ?>
</tbody>
</table>
</div>
[/code]
댓글 2개
bamchi
11년 전
고생하셨습니다. ㅎㅎ
Terrorboy
11년 전
실제 사용 해본결과 문제가 없네요 ^^
[http://sir.co.kr/data/cheditor4/1407/b78d5034adcef6e421f2c138865330d6_1404884563_4885.png]
[http://sir.co.kr/data/cheditor4/1407/b78d5034adcef6e421f2c138865330d6_1404884563_4885.png]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5830 | 13년 전 | 1186 | ||
| 5829 | 13년 전 | 5054 | ||
| 5828 | 13년 전 | 6435 | ||
| 5827 | 13년 전 | 1205 | ||
| 5826 |
|
13년 전 | 530 | |
| 5825 | 13년 전 | 896 | ||
| 5824 |
|
13년 전 | 1881 | |
| 5823 | 13년 전 | 5617 | ||
| 5822 |
jfascas
|
13년 전 | 1041 | |
| 5821 | 13년 전 | 1698 | ||
| 5820 | 13년 전 | 1312 | ||
| 5819 |
itlang
|
13년 전 | 508 | |
| 5818 | 13년 전 | 1306 | ||
| 5817 | 13년 전 | 780 | ||
| 5816 | 13년 전 | 625 | ||
| 5815 | 13년 전 | 6134 | ||
| 5814 | 13년 전 | 860 | ||
| 5813 |
악마의유혹
|
13년 전 | 463 | |
| 5812 | 13년 전 | 2805 | ||
| 5811 | 13년 전 | 1175 | ||
| 5810 | 13년 전 | 3534 | ||
| 5809 | 13년 전 | 1355 | ||
| 5808 | 13년 전 | 1063 | ||
| 5807 | 13년 전 | 572 | ||
| 5806 | 13년 전 | 559 | ||
| 5805 |
angrysol
|
13년 전 | 816 | |
| 5804 | 13년 전 | 1005 | ||
| 5803 | 13년 전 | 1734 | ||
| 5802 |
angrysol
|
13년 전 | 1051 | |
| 5801 |
후라보노보노
|
13년 전 | 2137 | |
| 5800 | 13년 전 | 1101 | ||
| 5799 |
|
13년 전 | 4191 | |
| 5798 |
|
13년 전 | 3360 | |
| 5797 |
|
13년 전 | 4936 | |
| 5796 | 13년 전 | 7541 | ||
| 5795 | 13년 전 | 2778 | ||
| 5794 | 13년 전 | 2230 | ||
| 5793 |
|
13년 전 | 660 | |
| 5792 | 13년 전 | 2973 | ||
| 5791 | 13년 전 | 845 | ||
| 5790 | 13년 전 | 4329 | ||
| 5789 |
|
13년 전 | 2478 | |
| 5788 |
|
13년 전 | 1852 | |
| 5787 |
오지랖선생
|
13년 전 | 1619 | |
| 5786 | 13년 전 | 5924 | ||
| 5785 | 13년 전 | 1748 | ||
| 5784 |
|
13년 전 | 1450 | |
| 5783 | 13년 전 | 1308 | ||
| 5782 |
|
13년 전 | 2819 | |
| 5781 | 13년 전 | 2852 | ||
| 5780 | 13년 전 | 1155 | ||
| 5779 |
|
13년 전 | 1358 | |
| 5778 |
오리진소프트
|
13년 전 | 4608 | |
| 5777 | 13년 전 | 678 | ||
| 5776 | 13년 전 | 1145 | ||
| 5775 | 13년 전 | 1457 | ||
| 5774 | 13년 전 | 1877 | ||
| 5773 |
|
13년 전 | 1912 | |
| 5772 | 13년 전 | 1677 | ||
| 5771 | 13년 전 | 4786 | ||
| 5770 | 13년 전 | 1126 | ||
| 5769 | 13년 전 | 6107 | ||
| 5768 |
|
13년 전 | 1578 | |
| 5767 | 13년 전 | 1685 | ||
| 5766 |
프로프리랜서
|
13년 전 | 1382 | |
| 5765 |
|
13년 전 | 1036 | |
| 5764 | 13년 전 | 1760 | ||
| 5763 |
|
13년 전 | 781 | |
| 5762 |
|
13년 전 | 2286 | |
| 5761 | 13년 전 | 616 | ||
| 5760 | 13년 전 | 621 | ||
| 5759 | 13년 전 | 3269 | ||
| 5758 | 13년 전 | 1075 | ||
| 5757 |
|
13년 전 | 740 | |
| 5756 | 13년 전 | 566 | ||
| 5755 | 13년 전 | 1057 | ||
| 5754 |
|
13년 전 | 2223 | |
| 5753 | 13년 전 | 674 | ||
| 5752 | 13년 전 | 1542 | ||
| 5751 | 13년 전 | 764 | ||
| 5750 | 13년 전 | 750 | ||
| 5749 | 13년 전 | 2567 | ||
| 5748 | 13년 전 | 999 | ||
| 5747 | 13년 전 | 1216 | ||
| 5746 |
|
13년 전 | 645 | |
| 5745 | 13년 전 | 1658 | ||
| 5744 | 13년 전 | 666 | ||
| 5743 | 13년 전 | 828 | ||
| 5742 |
프로프리랜서
|
13년 전 | 575 | |
| 5741 | 13년 전 | 638 | ||
| 5740 | 13년 전 | 618 | ||
| 5739 | 13년 전 | 724 | ||
| 5738 | 13년 전 | 1922 | ||
| 5737 | 13년 전 | 979 | ||
| 5736 | 13년 전 | 1088 | ||
| 5735 | 13년 전 | 1990 | ||
| 5734 | 13년 전 | 1137 | ||
| 5733 | 13년 전 | 2776 | ||
| 5732 |
JOYCOM
|
13년 전 | 634 | |
| 5731 | 13년 전 | 3299 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기