2009年今年, 2010年。
答案 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')
也做到了