时间:2021-05-26
本文实例讲述了js模仿php中strtotime()与date()函数实现方法。分享给大家供大家参考。具体如下:
在js中没有像php中strtotime()与date()函数,可直接转换时间戳,下面我们来自定一个函数来实现js中具体有时间戳转换的功能。
function datetime_to_unix(datetime){ var tmp_datetime = datetime.replace(/:/g,'-'); tmp_datetime = tmp_datetime.replace(/ /g,'-'); var arr = tmp_datetime.split("-"); var now = new Date(Date.UTC(arr[0],arr[1]-1,arr[2],arr[3]-8,arr[4],arr[5])); return parseInt(now.getTime()/1000); } function unix_to_datetime(unix) { var now = new Date(parseInt(unix) * 1000); return now.toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } var datetime = '2012-11-16 10:36:50'; var unix = datetime_to_unix(datetime); document.write(datetime+' 转换后的时间戳为: '+unix+' '); var unix = 1353033300; var datetime = unix_to_datetime(unix); document.write(unix+' 转换后的日期为: '+datetime);如果想弹出:2010-10-20 10:00:00这个格式的也好办
<script>function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); }alert(getLocalTime(1177824835));</script>完整实例
<script type="text/javascript">var day1 = parseInt(new Date().valueOf()/1000);var day2 = new Date(day1 * 1000);function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:d{1,2}$/,' '); }function getLocalTimes(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17);} function getLocalFormatTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); }document.getElementById("btn1").onclick = function(){ alert(day1);}document.getElementById("btn2").onclick = function(){ alert(day2.toLocaleString());}document.getElementById("btn3").onclick = function(){ alert( getLocalTime(day1) );}document.getElementById("btn4").onclick = function(){ alert( getLocalFormatTime(day1) );}document.getElementById("btn5").onclick = function(){ alert(day2.getFullYear()+"-"+(day2.getMonth()+1)+"-"+day2.getDate()+" "+day2.getHours()+":"+day2.getMinutes()+":"+day2.getSeconds());}</script>希望本文所述对大家的javascript程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了php使用date和strtotime函数输出指定日期的方法。分享给大家供大家参考。具体方法分析如下:在php中date和strtotime函数都
在php中我们要把时间戳转换日期可以直接使用date函数来实现,如果要把日期转换成时间戳可以使用strtotime()函数实现,下面我来给大家举例说明。1.ph
下面是PHP判断日期格式的代码:functionis_date($date){$is_date=strtotime($date)?strtotime($da
1.php中时间转换函数strtotime(“today”)date("Y-m-dH:i",$unixtime)2.php中获得今天零点的时间戳要获得零点的un
$data='2018-08-10';//这里可以任意格式,因为strtotime函数很强大 $is_date=strtotime($data)?strt