PHP frenchtojd() Function

In this chapter you will learn:

  1. Definition for PHP frenchtojd() Function
  2. Syntax for PHP frenchtojd() Function
  3. Parameter for PHP frenchtojd() Function
  4. Example - Convert a French Republican date to a Julian Day Count and back to a French Republican date

Definition

The frenchtojd() function converts a date from the French Republican Calendar to a Julian Day Count.

Syntax

PHP frenchtojd() Function has the following syntax.

frenchtojd(month,day,year);

Parameter

ParameterIs RequiredDescription
monthRequired.Month as a number from 1 to 13
dayRequired.Day as a number from 1 to 30
yearRequired.Year as a number from 1 to 14

Example

Convert a French Republican date to a Julian Day Count and back to a French Republican date:


<?php/* ja va2  s  .  c  om*/
$jd=frenchtojd(3,3,14);
echo $jd . "\n";
echo jdtofrench($jd);
?>

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. Definition for PHP gregoriantojd() Function
  2. Syntax for PHP gregoriantojd() Function
  3. Parameter for PHP gregoriantojd() Function
  4. Return value for PHP gregoriantojd() Function
  5. Example - Convert a Gregorian date to a Julian Day Count and back to a Gregorian date
Home » PHP Tutorial » PHP Calendar Functions
PHP 5 Predefined Calendar Constants
PHP cal_days_in_month() Function
PHP cal_from_jd() Function
PHP cal_info() Function
PHP cal_to_jd() Function
PHP easter_date() Function
PHP easter_days() Function
PHP frenchtojd() Function
PHP gregoriantojd() Function
PHP jddayofweek() Function
PHP jdmonthname() Function
PHP jdtofrench() Function
PHP jdtogregorian() Function
PHP jdtojewish() Function
PHP jdtojulian() Function
PHP jdtounix() Function
PHP jewishtojd() Function
PHP juliantojd() Function
PHP unixtojd() Function