码迷,mamicode.com
首页 > Web开发 > 详细

php获取格式时间和时间戳

时间:2014-08-27 12:35:17      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   div   cti   log   时间   on   c   

function get_intime($intime,$format){
	if($intime==""){
		return "";
	}
	$format = isset($format)?$format:‘Y-m-d H:i:s‘;
	if(preg_match(‘/\d{10,}/is‘,$intime)){
		return date($format,$intime);;
	}else{
		return date($format,strtotime($intime));;
	}
}
function get_intime_strtotime($time){//获取时间戳
	return strtotime(get_intime($time));
}

  

  php获取格式时间和时间戳

php获取格式时间和时间戳

标签:blog   io   for   div   cti   log   时间   on   c   

原文地址:http://www.cnblogs.com/chenzhaojx/p/3938994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!