Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
77  
echo date("Y"); – doub1ejack Jul 3 '12 at 19:30

11 Answers

up vote 40 down vote accepted

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:

To format dates in other languages, you should use the setlocale() and strftime() functions instead of 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.

share|improve this answer
2  
Links are inactive. Correct are here: php.net/manual/en/function.date.php for date and php.net/manual/pl/function.strftime.php for strftime – Robert Jagoda Oct 15 '12 at 7:28
@RobertJagoda: Thanks, edited! – Erik van Brakel Oct 15 '12 at 7:44
6  
While this is all very nice and the accepted answer (!), it doesn't actually answer the question... Not sure if I'm allowed to add Daniel or gregmac's answers to this one? :) – Laoujin Nov 23 '12 at 18:27
1  
@Laoujin the goal of StackOverflow is to make the internet a better place ;-) So by all means, edit answers if it makes the answer better. – Erik van Brakel Nov 24 '12 at 12:50
1  
@ErikvanBrakel just out of interest the current year in thailand is 2556. not sure if PHP locale takes this into account but in a perfect world it should :) – Dirk Hartzer Waldeck Feb 6 at 12:41
<?php echo date("Y"); ?>
share|improve this answer
9  
Also, <?= date('Y') ?> – Shane Reustle Jan 2 at 18:11
4  
short tags are not supported by all servers and there's also this: programmers.stackexchange.com/questions/151661/… – Dirk Hartzer Waldeck Feb 6 at 12:44

My super lazy version of showing a copyright line, that automatically stays updated:

&copy; <?php 
$copyYear = 2008; 
$curYear = date('Y'); 
echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : '');
?> Me, Inc.

This year (2008), it will say:

© 2008 Me, Inc.

Next year, it will say:

© 2008-2009 Me, Inc.

and forever stay updated with the current year.

share|improve this answer
5  
full marks for preempting why I came to this page – Rob Nov 19 '12 at 21:28
The quickest copy=>paste I ever did. – Samveen Apr 5 at 20:16

http://us2.php.net/date

echo date('Y');
share|improve this answer
this shows current date – dana Mar 30 '11 at 17:08
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.

share|improve this answer
&copy; <?php echo date("Y"); ?> - All rights reserved

Will give you:

© 2012 - All rights reserved

share|improve this answer
Welcome to SO, but it's not necessary to bounce this topic. The answer has already been given a dozen of times where your answer does not add anything to the previous answers. Sorry. – Jelmer Dec 25 '12 at 10:27

This one gives you the local time: $year = date('Y'); // 2008

And this one UTC: $year = gmdate('Y'); // 2008

share|improve this answer

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");
share|improve this answer

print date('Y');

For more information, check date() function documentation: http://www.php.net/date

share|improve this answer
<?php echo date("Y"); ?>
share|improve this answer

If your server supports Short Tags, or you use PHP 5.4, you can use:

<?=date("Y")?>
share|improve this answer
Please, don't ever, ever, ever use short-tags again. stackoverflow.com/questions/200640/… – Jelmer Dec 25 '12 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.