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 out-of-date. How would I make the year update automatically with PHP4 and PHP5?
|
You can use either date or strftime. In this case I'd say it doesn't matter as a year is a year, no matter what (unless there's a locale that formats the year differently?) On a side note, when formatting dates in PHP it matters when you want to format your date in a different locale than your default. If so, you have to use setlocale and strftime. According to the php manual on date:
From this point of view, I think it would be best to use strftime as much as possible, if you even have a remote possibility of having to localize your application. If that's not an issue, pick the one you like best. |
|||||||||||||||||||
|
|
|||||||||
|
|
My super lazy version of showing a copyright line, that automatically stays updated:
This year (2008), it will say:
Next year, it will say:
and forever stay updated with the current year. |
||||
|
||||
|
|
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. |
|||
|
|
Will give you: © 2012 - All rights reserved |
|||
|
|
This one gives you the local time: $year = date('Y'); // 2008 And this one UTC: $year = gmdate('Y'); // 2008 |
|||
|
|
|
With PHP heading in a more object-oriented direction, I'm surprised nobody here has referenced the built-in
|
|||
|
|
|
print date('Y'); For more information, check date() function documentation: http://www.php.net/date |
|||
|
|
|
If your server supports Short Tags, or you use PHP 5.4, you can use:
|
|||
|
echo date("Y");– doub1ejack Jul 3 '12 at 19:30