PHP jdtojulian() 函数
PHP 教程
· 2019-01-23 09:27:49
实例
把儒略历法的日期转换为儒略日计数,然后再转换回儒略历法的日期:
<?php
$jd=juliantojd(6,20,2007);
echo $jd . "<br>";
echo jdtojulian($jd);
?>
$jd=juliantojd(6,20,2007);
echo $jd . "<br>";
echo jdtojulian($jd);
?>
定义和用法
jdtojulian() 函数把儒略日计数转换为儒略历法的日期。
提示:请参阅 juliantojd() 函数把儒略历法的日期转换为儒略日计数。
语法
jdtojulian(jd);
| 参数 | 描述 |
|---|---|
| jd | 必需。数字(儒略日计数)。 |
技术细节
| 返回值: | 以 "月/日/年" 形式返回儒略历法的日期。 |
|---|---|
| PHP 版本: | 4+ |
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Beginning ASP.NET 4 in C# and Vb
Imar Spaanjaars / Wrox / 2010-3-19 / GBP 29.99
This book is for anyone who wants to learn how to build rich and interactive web sites that run on the Microsoft platform. With the knowledge you gain from this book, you create a great foundation to ......一起来看看 《Beginning ASP.NET 4 in C# and Vb》 这本书的介绍吧!