如何使用 PHP 获取年份编号?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1356015/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-25 02:10:27  来源:igfitidea点击:

How to get the year number with PHP?

phpdate

提问by omg

Possible Duplicate:
How do I use PHP to get the current year?

可能的重复:
如何使用 PHP 获取当前年份?

2009 this year, 2010 next year.

今年2009,明年2010。

回答by NSSec

Look at the functions date() and strtotime():

查看函数 date() 和 strtotime():

echo date('Y');
echo date('Y', strtotime('+1 year'));

回答by CMS

You can use the date function to extract a part of a date:

您可以使用 date 函数来提取日期的一部分:

$year = date("Y"); // get the year part of the current date
$nextYear = $year + 1;

Run the snippet here.

此处运行代码段。

回答by Nachi

<?php
$date="2010-04-30";
$y = date('Y',strtotime($date));
echo $y; 
?>

回答by Chathuranga Chandrasekara

Use getdate()function

使用getdate()函数

回答by Chathuranga Chandrasekara

...and strftime('%Y')does it too

...也是strftime('%Y')这样做的