Atomzeit
Dieses Script holt sich die aktuelle Atomzeit von einer Uni!
Die Zeit wird dann ausgegeben. Es gibt meistens eine Verzögerung von 0,7
Sekunden
|
Script: |
<?php
function get_atom_time()
{
if(!$file
= @file ('http://www.uni-leipzig.de/cgi-bin/date/index.htm'))
return false;
$fcontents
= join ('',
$file);
$arr
= split("[
]+",$fcontents);
$mo
= $arr[1];
$month_array
= array("Jan","Feb","Mar","Apr","May",
"Jun","Jul","Aug","Sep","Oct","Nov","Dec");
$mo
= (array_search($mo,$month_array))+1;
$d =
$arr[2];
$t =
$arr[3];
$y =
$arr[5];
$time_arr
= explode(":",$t);
$h =
$time_arr[0];
$m =
$time_arr[1];
$s =
$time_arr[2];
return mktime($h,$m,$s,$mo,$d,$y);
}
echo date("h:i:s",
get_atom_time());
?>
|
|