Wednesday 25 September 2024

Automatically Updating Year in PHP for a Copyright Notice

When managing websites, it’s common to add a copyright notice in the footer. However, hardcoding the year can make your site look outdated if it isn’t updated annually. Luckily, with PHP, you can ensure the year updates dynamically without having to adjust the code each year.

Here’s how you can automatically update the year in your copyright notice using PHP.

Getting the Current Year in PHP

In PHP, the easiest way to get the current year is by using the built-in date() function. The date() function takes formatting parameters, and for the year, you simply pass 'Y' (for the four-digit year format).

Read more »

Labels: