我想在一个网站的页脚放一个版权声明,但我认为这对于过时的年份来说是非常俗气的。

如何在php4或php5中自动更新年份?


当前回答

顺便说一句……网站版权展示有几种合适的方式。有些人倾向于让事情变得多余,例如:版权©具有相同的含义。重要的版权部分包括:

**Symbol, Year, Author/Owner and Rights statement.** 

使用PHP + HTML:

<p id='copyright'>&copy; <?php echo date("Y"); ?> Company Name All Rights Reserved</p>

or

<p id='copyright'>&copy; <?php echo "2010-".date("Y"); ?> Company Name All Rights Reserved</p

其他回答

print date('Y');

有关更多信息,请查看date()函数文档:https://secure.php.net/manual/en/function.date.php

用M打印当前月份,用D打印日期,用Y打印年份。

<?php echo date("M D Y"); ?>

创建一个helper函数并调用它

getCurrentYear();

function getCurrentYear(){
    return now()->year;
}

在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');

使用PHP date()函数。

格式是Y,大写的Y是四位数的年份。

<?php echo date("Y"); ?>