我想在一个网站的页脚放一个版权声明,但我认为这对于过时的年份来说是非常俗气的。
如何在php4或php5中自动更新年份?
我想在一个网站的页脚放一个版权声明,但我认为这对于过时的年份来说是非常俗气的。
如何在php4或php5中自动更新年份?
当前回答
echo date('Y')给你当前年份,这将自动更新,因为date()给我们当前日期。
其他回答
如果你正在使用碳PHP API扩展DateTime,你可以很容易地实现:
<?php echo Carbon::now()->年;? >
$dateYear = date('Y');
echo "Current Year: $dateYear";
本年:2022年
$dateYear = date('y');
echo $dateYear;
22
在date函数的第二个参数中可以得到更多的值 Strtotime返回参数传递的时间戳
// This work when you get time as string
echo date('Y', strtotime("now"));
// Get next years
echo date('Y', strtotime("+1 years"));
//
echo strftime("%Y", strtotime("now"));
使用datetime类
echo (new DateTime)->format('Y');
print date('Y');
有关更多信息,请查看date()函数文档:https://secure.php.net/manual/en/function.date.php
创建一个helper函数并调用它
getCurrentYear();
function getCurrentYear(){
return now()->year;
}