A PHP Remake of the Rocknarok Multiverse Time clock
https://rmt.yandols.xyz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
<html>
|
|
<title>Rocknarok Multiverse Time Clock</title>
|
|
<h1>Rocknarok Multiverse Time Clock</h1>
|
|
|
|
<p>Not functional yet! Currently in testing phase. </p>
|
|
<p>Testing results as follow,<a href="https://git.yandols.xyz/YandolsZX/RMT-Clock-PHP">Source code development here</a>. </p>
|
|
<br/><br/>
|
|
|
|
<?php
|
|
//Settings here
|
|
|
|
//Mechanisms here
|
|
|
|
// Testing 1
|
|
echo "Test #1: <br/>";
|
|
|
|
$now = new DateTime();
|
|
$zero = new DateTime('1442-01-01');
|
|
$diff = $now->diff($zero);
|
|
echo $diff->format('%a days'); // days since day zero
|
|
echo "<br/><br/>"; //separator
|
|
|
|
// Test 2 with sample date
|
|
echo "Test #2: <br/>";
|
|
|
|
$year = date("Y") - 579;
|
|
$month = date("M") - 6;
|
|
$day = date("d") - 12;
|
|
echo "Year: " . $year . " Month: " . $month . " Day: " . $day . "<br/>";
|
|
echo "<br/><br/>"; //separator
|
|
|
|
// Test 3 with idea based on ahk version of RMT, not sure if actually works in PHP
|
|
echo "Test #3: <br/>";
|
|
|
|
$testdate=date_create();
|
|
date_add($testdate,date_interval_create_from_date_string("-579 years"));
|
|
date_add($testdate,date_interval_create_from_date_string("-6 months"));
|
|
date_add($testdate,date_interval_create_from_date_string("12 days"));
|
|
date_add($testdate,date_interval_create_from_date_string("2 hours"));
|
|
date_add($testdate,date_interval_create_from_date_string("17 minutes"));
|
|
date_add($testdate,date_interval_create_from_date_string("6 seconds"));
|
|
echo date_format($testdate,"Y/m/d H:i:s");
|
|
echo "<br/><br/>"; //separator
|
|
|
|
?>
|
|
Placeholder.
|
|
|
|
</html>
|