그동안 일하면서 어떻게 달력이 필요 한 작업이 하나도 없었을까요??? 아이러니 하네요 ㅎㅎㅎ
방금 하나 만들어 봤는데 유효한지 모르겠네요~
[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]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 6930 |
SOFTA
|
11년 전 | 5979 | |
| 6929 |
|
11년 전 | 1590 | |
| 6928 | 11년 전 | 1751 | ||
| 6927 | 11년 전 | 1776 | ||
| 6926 | 11년 전 | 1877 | ||
| 6925 | 11년 전 | 2269 | ||
| 6924 | 11년 전 | 3868 | ||
| 6923 | 11년 전 | 2263 | ||
| 6922 |
level999
|
11년 전 | 1037 | |
| 6921 | 11년 전 | 816 | ||
| 6920 | 11년 전 | 947 | ||
| 6919 | 11년 전 | 1057 | ||
| 6918 | 11년 전 | 1310 | ||
| 6917 | 11년 전 | 15426 | ||
| 6916 | 11년 전 | 1426 | ||
| 6915 | 11년 전 | 576 | ||
| 6914 | 11년 전 | 612 | ||
| 6913 | 11년 전 | 875 | ||
| 6912 | 11년 전 | 3125 | ||
| 6911 |
사랑해요79
|
11년 전 | 963 | |
| 6910 | 11년 전 | 742 | ||
| 6909 | 11년 전 | 778 | ||
| 6908 | 11년 전 | 635 | ||
| 6907 | 11년 전 | 830 | ||
| 6906 | 11년 전 | 1584 | ||
| 6905 | 11년 전 | 563 | ||
| 6904 | 11년 전 | 999 | ||
| 6903 | 11년 전 | 1675 | ||
| 6902 |
2donggalbi
|
11년 전 | 512 | |
| 6901 | 11년 전 | 1384 | ||
| 6900 | 11년 전 | 714 | ||
| 6899 | 11년 전 | 857 | ||
| 6898 |
열라뽕똬이
|
11년 전 | 1304 | |
| 6897 |
this1mg
|
11년 전 | 1604 | |
| 6896 |
sbdossb
|
11년 전 | 573 | |
| 6895 |
봉보로봉봉
|
11년 전 | 1148 | |
| 6894 |
똘똘이스머츠
|
11년 전 | 491 | |
| 6893 |
네이비컬러
|
11년 전 | 3638 | |
| 6892 | 11년 전 | 1071 | ||
| 6891 |
네이비컬러
|
11년 전 | 1317 | |
| 6890 | 11년 전 | 1140 | ||
| 6889 | 11년 전 | 583 | ||
| 6888 | 11년 전 | 720 | ||
| 6887 | 11년 전 | 612 | ||
| 6886 | 11년 전 | 5055 | ||
| 6885 | 11년 전 | 552 | ||
| 6884 |
asfasdfd235
|
11년 전 | 576 | |
| 6883 | 11년 전 | 3032 | ||
| 6882 | 11년 전 | 907 | ||
| 6881 | 11년 전 | 4422 | ||
| 6880 | 11년 전 | 1812 | ||
| 6879 |
퍼블리셔지노군
|
11년 전 | 2624 | |
| 6878 | 11년 전 | 555 | ||
| 6877 | 11년 전 | 576 | ||
| 6876 | 11년 전 | 1445 | ||
| 6875 | 11년 전 | 629 | ||
| 6874 | 11년 전 | 1599 | ||
| 6873 | 11년 전 | 1594 | ||
| 6872 | 11년 전 | 4455 | ||
| 6871 |
Abilityarch
|
11년 전 | 962 | |
| 6870 | 11년 전 | 2126 | ||
| 6869 | 11년 전 | 1403 | ||
| 6868 | 11년 전 | 1445 | ||
| 6867 | 11년 전 | 1520 | ||
| 6866 | 11년 전 | 742 | ||
| 6865 | 11년 전 | 1614 | ||
| 6864 | 11년 전 | 469 | ||
| 6863 | 11년 전 | 3747 | ||
| 6862 | 11년 전 | 1845 | ||
| 6861 | 11년 전 | 1644 | ||
| 6860 | 11년 전 | 1295 | ||
| 6859 |
cityman
|
11년 전 | 6811 | |
| 6858 | 11년 전 | 1261 | ||
| 6857 |
의정부아줌마
|
11년 전 | 862 | |
| 6856 | 11년 전 | 2370 | ||
| 6855 | 11년 전 | 1696 | ||
| 6854 | 11년 전 | 825 | ||
| 6853 | 11년 전 | 1209 | ||
| 6852 | 11년 전 | 2593 | ||
| 6851 | 11년 전 | 1959 | ||
| 6850 | 11년 전 | 1789 | ||
| 6849 | 11년 전 | 2078 | ||
| 6848 | 11년 전 | 2354 | ||
| 6847 | 11년 전 | 3133 | ||
| 6846 | 11년 전 | 2714 | ||
| 6845 | 11년 전 | 2799 | ||
| 6844 | 11년 전 | 3520 | ||
| 6843 | 11년 전 | 3264 | ||
| 6842 |
아트291
|
11년 전 | 692 | |
| 6841 | 11년 전 | 4169 | ||
| 6840 | 11년 전 | 5181 | ||
| 6839 | 11년 전 | 889 | ||
| 6838 |
|
11년 전 | 2094 | |
| 6837 | 11년 전 | 1278 | ||
| 6836 |
netdf
|
11년 전 | 607 | |
| 6835 |
|
11년 전 | 1004 | |
| 6834 | 11년 전 | 668 | ||
| 6833 |
|
11년 전 | 2683 | |
| 6832 |
울산굿모닝
|
11년 전 | 1655 | |
| 6831 |
|
11년 전 | 665 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기