👻 Check our latest review to choose the best laptop for Machine Learning engineers and Deep learning tasks!
Syntax:jdtofrench($jd)Parameters:The function takes one required parameter $jd , which defines the Julian day.Returned value:The function returns a French date. Date return format: $month / $day / $year. If a Julian day integer is passed as 0, then 0/0/0 is returned as a day off.Examples:
Input: 2379254 Output: 5/8/10 Input: 2380229 Output: 1/7/13The programs below illustrate the jdtofrench() function.Program 1:The program below illustrates the use of the jdtofrench() function.
// PHP demo program
// using the jdtofrench() function
// converts the date to a Julian integer
$jd
= frenchtojd (1, 7, 13);
// prints a whole Julian day
echo
"The julian day integer is"
,
$jd
,
""
;
// converts Julian day to French date
$date
= jdtofrench (
$jd
);
// prints the date
echo
"The french date initially taken was"
, (
$date
),
""
;
?>
Output:The julian day integer is 2380229 The french date initially taken was 1/7/13
Program 2:The program below shows the output when an invalid integer is passed in Julian days.
// PHP demo program
// using the jdtofrench() function
// if the parameter is out of range
// converts the date to a Julian integer
$jd
= frenchtojd (1, 7, 18);
// displays the Julian day integer as 0, since the year is out of range
echo
"The julian day integer is"
,
$jd
,
" "
;
// converts Julian day to French date
$date
= jdtofrench (
$jd
);
// prints the date as 0/0/0 since french year out of range
echo
"The french date initially taken was"
, (
$date
),
""
;
?>
Output:The julian day integer is 0 The french date initially taken was 0/0/0
Link:
http://php.net/manual/en/function.jdtofrench.php
👻 Read also: what is the best laptop for engineering students?
We hope this article has helped you to resolve the problem. Apart from PHP Jdtofrench () Function, check other code Python module-related topics.
Want to excel in Python? See our review of the best Python online courses 2023. If you are interested in Data Science, check also how to learn programming in R.
By the way, this material is also available in other languages:
- Italiano PHP Jdtofrench () Function
- Deutsch PHP Jdtofrench () Function
- Français PHP Jdtofrench () Function
- Español PHP Jdtofrench () Function
- Türk PHP Jdtofrench () Function
- Русский PHP Jdtofrench () Function
- Português PHP Jdtofrench () Function
- Polski PHP Jdtofrench () Function
- Nederlandse PHP Jdtofrench () Function
- 中文 PHP Jdtofrench () Function
- 한국어 PHP Jdtofrench () Function
- 日本語 PHP Jdtofrench () Function
- हिन्दी PHP Jdtofrench () Function
Dmitry Galleotti
Warsaw | 2023-03-22
Thanks for explaining! I was stuck with PHP Jdtofrench () Function for some hours, finally got it done 🤗. Will use it in my bachelor thesis
Schneider Nickolson
London | 2023-03-22
Thanks for explaining! I was stuck with PHP Jdtofrench () Function for some hours, finally got it done 🤗. Will use it in my bachelor thesis
Schneider Richtgofen
Boston | 2023-03-22
Thanks for explaining! I was stuck with PHP Jdtofrench () Function for some hours, finally got it done 🤗. I just hope that will not emerge anymore