Codice PHP:
<html>
<head>
<script>
function data() {
var now = new Date();
var giornosett = now.getDay();
var giorno = now.getDate();
var mese = now.getMonth();
var anno = now.getFullYear();
var nameDay = new Array('Dom','Lun','Mar','Mer','Gio','Ven','Sab');
var nameMth = new Array('gen','feb','mar','apr','mag','giu','lug','ago','set','ott','nov','dic');
setTimeout(function() {
var now = new Date();
var ora = ((ora = now.getHours())<= 9)?'0'+ora:ora;
var minuti = ((minuti = now.getMinutes())<= 9)?'0'+minuti:minuti;
var secondi = ((secondi = now.getSeconds())<= 9)?'0'+secondi:secondi;
document.getElementById('data').innerHTML = nameDay[giornosett] + ' ' + giorno + ' ' + nameMth[mese] + ' ' + anno + ' '+ora+' '+minuti+' '+secondi+', ';
data()
},1000);
}
</script>
</head>
<body onload="data()">
<span id="data"><?php
setlocale(LC_TIME, 'ita', 'it_IT.utf8');
$giorni = array("Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab");
$mesi = array('', 'gen','feb','mar','apr','mag','giu','lug', 'ago','sett','ott','nov','dic');
list($sett,$giorno,$mese,$anno,$ora,$minuti,$secondi) = explode('-',date('w-d-n-Y-H-i-s'));
echo $giorni[$sett],' ',$giorno,' ',$mesi[$mese],' ',$anno, ' ',$ora,' ',$minuti,' ',$secondi; ?></span>
</body>
</html>
Ciao!