romme.php/exemple.php

56 lines
1.8 KiB
PHP

<?php
//
// romme_calendar :: exemple.php
//
// Some exemple to see if everything works in the romme calendar library
//
//
// On commence par inclure le fichier pour pouvoir convertir la date en calendrier romme
include("romme-calendar.php");
$testMois = date('n');
$testJour = date('j');
$testAnnee = date('Y');
$testJulianday = gregoriantojd($testMois, $testJour, $testAnnee);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PHP Romme Republican Calendar exemple</title>
</head>
<body>
<h1>PHP Romme Republican Calendar exemples</h1>
<h2>Date d'aujourd'hui</h2>
<p>
<strong>Date utilisée :</strong> <?php echo $testJour;?>/<?php echo $testMois;?>/<?php echo $testAnnee;?><br />
<strong>Jour julien :</strong> <?php echo $testJulianday; ?> <br />
</p>
<h2>Getting the "romme date string"</h2>
<p>
<strong>jdtoromme :</strong> <?php echo jdtoromme( $testJulianday );?> <br />
<strong>gregoriantoromme :</strong> <?php echo gregoriantoromme($testMois, $testJour, $testAnnee);?><br />
</p>
<h2>Getting the month/day/year</h2>
<p>
<strong>romme_getDay :</strong> <?php echo romme_getDay( jdtoromme( $testJulianday ) );?> <br />
<strong>romme_getMonth :</strong> <?php echo romme_getMonth( jdtoromme( $testJulianday ) );?> <br />
<strong>romme_getYear :</strong> <?php echo romme_getYear( jdtoromme( $testJulianday ) );?> <br />
</p>
<h2>Test des différentes fonctions</h2>
<p>
<strong>gregorian2FrenchDateString :</strong> <?php echo gregoriantoromme_completeString($testMois, $testJour, $testAnnee);?><br />
<strong>gregorian2FrenchDateStringShort :</strong> <?php echo gregoriantoromme_simplerString($testMois, $testJour, $testAnnee);?><br />
</p>
</body>
</html>