codecamp

PHP unixtojd() 函数

PHP unixtojd() 函数

PHP Calendar 参考手册 PHP Calendar 参考手册

实例

把 Unix 时间戳转换为儒略日计数:

<?php
echo unixtojd();
?>

运行实例 »

定义和用法

unixtojd() 函数把 Unix 时间戳转换为儒略日计数。

注释:Unix 时间戳表示从格利高里历法 1970 年 1 月 1 日至今的秒数。

提示:请参阅 jdtounix() 函数把儒略日计数转换为 Unix 时间戳。

语法

unixtojd(timestamp);

参数 描述
timestamp 可选。规定要进行转换的 Unix 时间戳。

技术细节

返回值: 返回 Unix 时间戳(从 1970 年 1 月 1 日至今的秒数)的儒略日数字,或者如果 timestamp 没给出,则返回当前时间的儒略日数字。
PHP 版本: 4+


PHP Calendar 参考手册 PHP Calendar 参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PHP 相关教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }