How do I use PHP to get the current year?

后端 未结 26 2238
萌比男神i
萌比男神i 2020-12-04 04:31

I want to put a copyright notice in the footer of a web site, but I think it\'s incredibly tacky for the year to be outdated.

How would I make the year update automat

26条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-04 04:58

    strftime("%Y");
    

    I love strftime. It's a great function for grabbing/recombining chunks of dates/times.

    Plus it respects locale settings which the date function doesn't do.

提交回复
热议问题