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

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

<center><b><font face="Arial" size="3">Fecha y hora en español 3</font></b><br><br>

<?php
// Configurar el idioma español para la fecha
setlocale(LC_TIME, 'es_ES.UTF-8', 'es_ES', 'spanish');

// Obtener la fecha en español
$fecha = strftime("%A, %d de %B de %Y");

// Obtener la hora actual
$hora = date("H:i:s");

// Mostrar la fecha y la hora
echo ucfirst($fecha) . " | " . $hora;

?>

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