Home >php教程 >PHP源码 >时间格式化

时间格式化

PHP中文网
PHP中文网Original
2016-05-25 17:11:481155browse

时间格式化

//格式化时间
function format_date($beforetime)
{
	$time= time() - $beforetime;	
	$today=strtotime(date("M-d-y",mktime(0,0,0,date("m"),date("d"),date("Y"))));
	if($time =60 && $time$today){
			$return="今天 ".date("H:i",$beforetime);	
		}elseif($beforetime($today-86400)){
			$return="昨天 ".date("H:i",$beforetime);	
		}else{
			$return=date("Y-m-d H:i",$beforetime);	
		}
	}
	return $return;
}
Statement:
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