간단하고 실용적인 PHP 캘린더 코드를 공유하는 PHP 캘린더 코드
풀어 주다: 2016-07-25 08:56:09
-
- header("content-type:text/html;charset=utf-8");
- ?>
-
- <스타일>
- 양식{
- 여백:0px;
- 패딩:0px;
- }
- td{
- text-align:center;
- 너비:80px;
- }
-
- /**
- * 간단하고 실용적인 PHP 달력 코드
- * 편집: bbs.it-home.org
- */
- if(!emptyempty($_GET)){
- $year = $_GET['year'];
- $월 = $_GET['월'];
- }
- if(emptyempty($year)){
- $year = date('Y');
- }
- if(emptyempty($month)){
- $month = date('m');
- }
- $start_weekday = 날짜('w',mktime(0,0,0,$month,1,$year));
- //echo $start_weekday;
- $days = date('t',mktime(0,0,0,$month,1,$year));
- //echo $days;
- $week = array('성수일','성수일','성수이','성수','성수','수수','수수수');
- $i = 0;
- $k = 1;
- $j = 0;
- echo '<테이블 테두리 = "1">';
- echo '
'.$year.'年'.$month.'月'.' | < /tr>';
- 에코 '
';
- for($i = 0;$i echo '
'.$week[$i].' | ';
- }
- echo '
';
- 에코 '
';
- for($j = 0;$j < $start_weekday;$j ){
- echo '
'.$j.' | ';
- }
- while($k <= $days){
- if($k == date('d')){
- echo '
'.$k.' | ';
- }else{
- echo '
'.$k.' | ';
- }
- if(($j 1) % 7 == 0){
- echo '
';
- }
- $j ;
- $k ;
- }
- while($j % 7 != 0){
- echo '
'.$j.' | ';
- $j ;
- }
- echo '
';
-
- 에코 '
';
- echo "
".'<<'.' | ' ;
- echo "
".'<'.' | ';
- echo '
';
- echo '<양식 이름 = "myform" 메소드 = "GET">';
- echo '<이름 = 연도 선택 >';
- for($start_year = 1970;$start_year<2039;$start_year ){
- echo '<옵션 값 ='. $start_year.'>'.$start_year.'';
- }
- echo ''.'年';
- echo '<이름 = 월 선택>';
- for($start_month = 1;$start_month<=12;$start_month ){
- echo '<옵션 값 = '.$start_month.'>'.$start_month.'' ;
- }
- echo '';
- 에코 '월';
- echo '<입력 유형 = "제출" 이름 = "검색" 값 = "查询">';
- echo '';
- 에코 '
| ';
- echo "
".'>>'.' | ' ;
- echo "
".'>'.' | ';
- 에코 '
';
- echo '
|
';
함수 lastYear($year,$month){
$year = $year-1;
return "연도=$년&월=$월";
}
function lastMonth($year,$month){
if($month == 1){
$year = $year -1;
$월 = 12;
}else{
$month--;
}
return "연도=$연도&월=$월";
}
function nextYear($year,$month){
$year = $year 1;
return "연도=$년&월=$월";
}
function nextMonth($year,$month){
if($month == 12){
$year = $year 1;
$월 = 1;
}else {
$월 ;
}
return "연도=$연도&월=$월";
}
?>
复代码
>>> 관심을 가질 만한 기사:
php 캘린더 캘린더 코드(2038년 문제 해결)
php 캘린더 코드(데모 효과 포함)
PHP 달력 코드 PHP에서 구현된 효율적인 달력 코드
php 캘린더 코드 세 가지 좋은 PHP 캘린더 코드
PHP 단순 달력 코드 예시 공유
PHP 단순 달력 구현 코드(이벤트 바인딩 가능)