Home > php教程 > PHP源码 > 凯撒日期(求某一天是这一年的第几天)

凯撒日期(求某一天是这一年的第几天)

PHP中文网
Release: 2016-05-23 08:39:46
Original
1666 people have browsed it

[PHP]代码  

/***********************************************************
变 量 名:$year ,$month ,$day为前台提交的值

作    者:shyhero

E - mail:shyhero@outlook.com
************************************************************/

<?php
	$year =$_POST [&#39;year&#39;];
	$month =$_POST [&#39;month&#39;];
	$day =$_POST [&#39;day&#39;];
	
	$sum =0 ;
	if(month>12)
		return;
	switch($month-1)
	{
		case 12:$sum +=31;
		case 11:$sum +=30;
		case 10:$sum +=31;
		case 9:$sum +=30;
		case 8:$sum +=31;
		case 7:$sum +=31;
		case 6:$sum +=30;
		case 5:$sum +=31;
		case 4:$sum +=30;
		case 3:$sum +=31;
		case 2:
			if( ! ( $year % 4 ) && ( $year % 100 ) || ! ($year % 400))
				$sum +=29;
			else
				$sum +=28;
		case 1:$sum +=31;break;
		default: return;
	}
	
	echo $sum+$day;
?>
Copy after login

                   

                   

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template