PHP | jdtojewish() Function
November 06, 2020
Hello dear readers! welcome back to another edition of our tutorial on PHP. In this tutorial guide, we are going to be discussing about PHP jdtojewish() Function.
The PHP jdtojewish() function converts the Julian Day Count to a jewish calendar date. If the hebrew parameter is set to True, then the fl parameter is used for Hebrew, string based, output format.
The PHP jdtojewish() function converts the Julian Day Count to a jewish calendar date. If the hebrew parameter is set to True, then the fl parameter is used for Hebrew, string based, output format.
Syntax
Following below is the syntax to use this function -
jdtojewish ( $juliandaycount, [$hebrew [, $fl]] );
RECOMMENDED POST: PHP jdtofrench() Function
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | juliandaycount(Required) A julian day number as integer |
2 | herbew(Optional) True indicates Hebrew output format |
3 | fl Optional. Defines the Hebrew output format. The available formats are −
|
Return Value
This built-in function returns the Jewish date as a string in the format of "month/day/year".
Example
Try out the below example -
<?php echo(jdtojewish(gregoriantojd(11,7,2020)) . "<br />"); echo(jdtojewish(gregoriantojd(11,7,2020),true)); ?>
Output
When the above code is executed, it will produce the following result -
2/20/5781
� ���� �����
RECOMMENDED POST: PHP | jdtogregorian() Function
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we are going to be discussing about the PHP jdtojulian() Function.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.