Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php // Imprimer le tableau de getdate() print_r(getdate()); echo "<br><br>"; // Retourne les informations de date/heure d'un horodatage ; puis formate la sortie $mydate=getdate(date("U")); echo "$mydate[weekday], $mydate[month] $mydate[mday], $mydate[year]"; ?> </body> </html>