그동안 일하면서 어떻게 달력이 필요 한 작업이 하나도 없었을까요??? 아이러니 하네요 ㅎㅎㅎ
방금 하나 만들어 봤는데 유효한지 모르겠네요~
[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]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7430 |
|
11년 전 | 4945 | |
| 7429 | 11년 전 | 1775 | ||
| 7428 |
멋진남자임
|
11년 전 | 1162 | |
| 7427 |
sdflksdj2
|
11년 전 | 825 | |
| 7426 | 11년 전 | 1357 | ||
| 7425 | 11년 전 | 1381 | ||
| 7424 | 11년 전 | 1050 | ||
| 7423 |
SeungYeon
|
11년 전 | 559 | |
| 7422 | 11년 전 | 809 | ||
| 7421 |
sdflksdj2
|
11년 전 | 681 | |
| 7420 | 11년 전 | 968 | ||
| 7419 |
|
11년 전 | 1393 | |
| 7418 |
멋진남자임
|
11년 전 | 1425 | |
| 7417 | 11년 전 | 605 | ||
| 7416 |
senseme
|
11년 전 | 1221 | |
| 7415 | 11년 전 | 959 | ||
| 7414 | 11년 전 | 710 | ||
| 7413 | 11년 전 | 4846 | ||
| 7412 | 11년 전 | 4405 | ||
| 7411 |
holla
|
11년 전 | 893 | |
| 7410 | 11년 전 | 4248 | ||
| 7409 | 11년 전 | 3925 | ||
| 7408 | 11년 전 | 4270 | ||
| 7407 | 11년 전 | 5076 | ||
| 7406 | 11년 전 | 4726 | ||
| 7405 | 11년 전 | 4299 | ||
| 7404 | 11년 전 | 754 | ||
| 7403 | 11년 전 | 5678 | ||
| 7402 | 11년 전 | 1517 | ||
| 7401 |
|
11년 전 | 973 | |
| 7400 | 11년 전 | 2972 | ||
| 7399 |
멋진남자임
|
11년 전 | 913 | |
| 7398 |
파랑새1597
|
11년 전 | 2697 | |
| 7397 | 11년 전 | 2270 | ||
| 7396 |
basketball
|
11년 전 | 1368 | |
| 7395 | 11년 전 | 1609 | ||
| 7394 | 11년 전 | 929 | ||
| 7393 | 11년 전 | 2066 | ||
| 7392 | 11년 전 | 847 | ||
| 7391 |
잘살아보자
|
11년 전 | 5361 | |
| 7390 |
잘살아보자
|
11년 전 | 2224 | |
| 7389 |
잘살아보자
|
11년 전 | 3318 | |
| 7388 |
파랑새1597
|
11년 전 | 931 | |
| 7387 | 11년 전 | 1106 | ||
| 7386 |
프리랜서퍼블리셔
|
11년 전 | 973 | |
| 7385 | 11년 전 | 1568 | ||
| 7384 |
울라라라우
|
11년 전 | 890 | |
| 7383 | 11년 전 | 1551 | ||
| 7382 |
잘살아보자
|
11년 전 | 4224 | |
| 7381 |
잘살아보자
|
11년 전 | 1996 | |
| 7380 |
잘살아보자
|
11년 전 | 1943 | |
| 7379 |
잘살아보자
|
11년 전 | 5903 | |
| 7378 |
senseme
|
11년 전 | 1896 | |
| 7377 |
잘살아보자
|
11년 전 | 2745 | |
| 7376 | 11년 전 | 2414 | ||
| 7375 |
잘살아보자
|
11년 전 | 1047 | |
| 7374 |
잘살아보자
|
11년 전 | 3158 | |
| 7373 |
잘살아보자
|
11년 전 | 2479 | |
| 7372 |
잘살아보자
|
11년 전 | 5831 | |
| 7371 |
잘살아보자
|
11년 전 | 3465 | |
| 7370 |
잘살아보자
|
11년 전 | 1912 | |
| 7369 |
잘살아보자
|
11년 전 | 2168 | |
| 7368 |
ksdhtm56
|
11년 전 | 564 | |
| 7367 | 11년 전 | 1430 | ||
| 7366 | 11년 전 | 930 | ||
| 7365 | 11년 전 | 3541 | ||
| 7364 |
잘살아보자
|
11년 전 | 1388 | |
| 7363 |
잘살아보자
|
11년 전 | 1369 | |
| 7362 |
잘살아보자
|
11년 전 | 1501 | |
| 7361 | 11년 전 | 3593 | ||
| 7360 | 11년 전 | 3558 | ||
| 7359 | 11년 전 | 3375 | ||
| 7358 |
멋진남자임
|
11년 전 | 1023 | |
| 7357 | 11년 전 | 3413 | ||
| 7356 | 11년 전 | 2599 | ||
| 7355 | 11년 전 | 3186 | ||
| 7354 |
파랑새1597
|
11년 전 | 646 | |
| 7353 |
잘살아보자
|
11년 전 | 2426 | |
| 7352 |
잘살아보자
|
11년 전 | 2411 | |
| 7351 |
잘살아보자
|
11년 전 | 2473 | |
| 7350 |
잘살아보자
|
11년 전 | 1474 | |
| 7349 |
잘살아보자
|
11년 전 | 1966 | |
| 7348 |
잘살아보자
|
11년 전 | 1283 | |
| 7347 |
잘살아보자
|
11년 전 | 1078 | |
| 7346 |
멋진남자임
|
11년 전 | 1646 | |
| 7345 | 11년 전 | 989 | ||
| 7344 | 11년 전 | 3871 | ||
| 7343 | 11년 전 | 3652 | ||
| 7342 | 11년 전 | 1279 | ||
| 7341 | 11년 전 | 2515 | ||
| 7340 |
|
11년 전 | 934 | |
| 7339 | 11년 전 | 1735 | ||
| 7338 | 11년 전 | 3345 | ||
| 7337 | 11년 전 | 3660 | ||
| 7336 | 11년 전 | 4595 | ||
| 7335 | 11년 전 | 975 | ||
| 7334 | 11년 전 | 1530 | ||
| 7333 | 11년 전 | 2934 | ||
| 7332 |
|
11년 전 | 1106 | |
| 7331 |
KeePin뽁이
|
11년 전 | 1101 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기