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.
17 lines
642 B
17 lines
642 B
3 years ago
|
<?php
|
||
|
// Rocknarok Multiverse Time Clock
|
||
|
// Server Time API Module
|
||
|
|
||
|
// Set current datetime of Rocknarok Universe.
|
||
|
$rutime=date_create();
|
||
|
date_add($rutime,date_interval_create_from_date_string("-579 years"));
|
||
|
date_add($rutime,date_interval_create_from_date_string("-6 months"));
|
||
|
date_add($rutime,date_interval_create_from_date_string("12 days"));
|
||
|
date_add($rutime,date_interval_create_from_date_string("2 hours"));
|
||
|
date_add($rutime,date_interval_create_from_date_string("17 minutes"));
|
||
|
date_add($rutime,date_interval_create_from_date_string("6 seconds"));
|
||
|
|
||
|
// Return current datetime to requester.
|
||
|
echo date_format($rutime,"Y/m/d H:i:s");
|
||
|
|
||
|
?>
|