$a= date("Y");
$a
的数据类型是什么:数字还是字符串?如果它是一个字符串,我如何用PHP获得前一年?
答案 0 :(得分:3)
echo date("Y",strtotime("-1 year")); //last year "2013"
echo date("Y"); //current year "2014"
答案 1 :(得分:2)
<?php
echo $a= date("Y")-1;
?>
它不是字符串或数字,我们可以使用(int)
在php中使用强制转换将其定义为字符串或其他int答案 2 :(得分:1)
您可以使用PHP的relative date/time formats:
date('Y', strtotime('last year'));
答案 3 :(得分:0)
echo date("Y",strtotime("-1 year"));