This is a set-and-forget line of PHP code that updates the year automatically.
If you forget to update the year in your site’s copyright line, this code will help you update the current year.
<!-- Let's assume this year is 2020, then the code will be as below: --> Copyright &copy; 2020 <?php if(($y=date("Y")) != 2020) echo "- $y"; ?>
The code
reads the server’s current date and stores it in the memory with a variable date("Y")
$y
and
checks if the current date is NOT equal to 2020. If it’s not equal, then != 2020
print the current year.echo "- $y"
If this year is 2020, it displays:
Copyright © 2020
If this year is 2021, it displays:
Copyright © 2020 - 2021
Leave a Reply