如何用PHP获取年份数?

时间:2009-08-31 06:03:33

标签: php date

  

可能重复:
  How do I use PHP to get the current year?

2009年今年, 2010年。

5 个答案:

答案 0 :(得分:35)

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

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

答案 1 :(得分:15)

您可以使用日期功能提取日期的一部分:

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

运行代码段here

答案 2 :(得分:8)

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

答案 3 :(得分:0)

使用getdate()功能

答案 4 :(得分:0)

...... strftime('%Y')也做到了