0

I want to echo the current month in full text. eg : june;

      echo date('M');

// result jun.

but i want to display full month. how can i do that.

user3358839
  • 147
  • 1
  • 1
  • 7

1 Answers1

8

You can use date with F (have a look at the docs).

So date("F") will output June.

dhh
  • 4,289
  • 8
  • 42
  • 59