js和PHP 时间戳与日期转换

js  时间戳转日期:

function getYMDhms(time){
	var date = new Date(parseInt(time) * 1000); //获取一个时间对象  注意:如果是uinx时间戳记得乘于1000。比如php函数time()获得的时间戳就要乘于1000

//		console.log(date.getFullYear());
	
	/*----------下面是获取时间日期的方法,需要什么样的格式自己拼接起来就好了----------*/
//		date.getFullYear();//获取完整的年份(4位,1970)
//		date.getMonth();//获取月份(0-11,0代表1月,用的时候记得加上1)
//		date.getDate();//获取日(1-31)
//		date.getTime();//获取时间(从1970.1.1开始的毫秒数)
//		date.getHours();//获取小时数(0-23)
//		date.getMinutes();//获取分钟数(0-59)
//		date.getSeconds();//获取秒数(0-59)var date = new Date(时间戳); //获取一个时间对象  注意:如果是uinx时间戳记得乘于1000。比如php函数time()获得的时间戳就要乘于1000
	
	Y = date.getFullYear() + '-';
	M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
	D = date.getDate() + ' ';
	h = (date.getHours()< 10 ? '0'+date.getHours() : date.getHours()) + ':';
	m = (date.getMinutes()< 10 ? '0'+date.getMinutes() : date.getMinutes()) + ':';
	s = (date.getSeconds()< 10 ? '0'+date.getSeconds() : date.getSeconds()); 
	return Y+M+D+h+m+s;
}


js  日期转时间戳:

start_date=new Date(current_year+'-'+current_month+'-01 00:00:00');
end_date=new Date(current_year+'-'+(parseInt(current_month)+1)+'-01 00:00:00');

st = Date.parse(start_date)/1000;  //获取到的时间戳除于1000就可以获得unix的时间戳了,在传值给PHP时用得到。
et = Date.parse(end_date)/1000; 


php  日期转时间戳:



$time = $_POST["time"];
$time = strtotime($time)-8*3600;

php 时间戳转日期:

date_default_timezone_set('PRC'); // 中国时区
$time=date('Y-m-d H:i:s',$result['time']);

你可能感兴趣的:(PHP)