How to get a current year in PHP

How to get a current year in PHP

In this post we will give you information about How to get a current year in PHP. Hear we will give you detail about How to get a current year in PHPAnd how to use it also give you demo for it if it is necessary.

we are going to learn about how to get the current year in PHP.

Getting the current year

To get the current year in PHP, we can use the built-in date() function by passing the “Y” format character as an argument to it.

The date(“Y”) function returns the current year in four-digit(2021) string format according to the user’s local time.

Here is an example:

$year = date("Y");echo $year;

Output:

2021

We can also get the current year in a two-digit format by passing the small “y” as an argument to the date() function.

$year = date("y");echo $year;
21

Hope this code and post will helped you for implement How to get a current year in PHP. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US