How do I use PHP to get the current year?

后端 未结 26 2321
萌比男神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 05:13

    With PHP heading in a more object-oriented direction, I'm surprised nobody here has referenced the built-in DateTime class:

    $now = new DateTime();
    $year = $now->format("Y");
    

    or one-liner with class member access on instantiation (php>=5.4):

    $year = (new DateTime)->format("Y");
    

提交回复
热议问题