-1

How can I get the full name of the day of the week in PHP like Monday or Friday?

Emil Engler
  • 489
  • 5
  • 14

1 Answers1

1

try:

echo date('D, d M Y h:i:s');

https://www.php.net/manual/en/function.date.php

Emil Engler
  • 489
  • 5
  • 14
zod
  • 12,092
  • 24
  • 70
  • 106