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
// Configurar el idioma español para la fecha
setlocale(LC_TIME, 'es_ES.UTF-8', 'es_ES', 'spanish');

// Obtener la fecha larga en español con el formato deseado
$long_date = strftime("%A, %d de %B de %Y");

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

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

?>

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