Código fuente de 'Fecha y hora en espanyol 2.php'

<html>
<head>
<title>Fecha y hora en español 2</title>
</head>
<body style="font-family: Arial; font-size: 9pt">

<center><b><font face="Arial" size="3">Fecha y hora en español 2</font></b>
<br><br>
<?php
setlocale (LC_TIME,"spanish");
$long_date = str_replace("De","de",ucwords(strftime("%A, %d de %B de %Y")));
echo $long_date;

?>



</center>
</body>
</html>