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

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


当前回答

print date('Y');

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

其他回答

我是这么做的:

<?php echo date("d-m-Y") ?>

下面是对它功能的一些解释:

d = day
m = month
Y = year

Y表示四位数(如1990),Y表示两位数(如90)

这个给出了当地时间:

$year = date('Y'); // 2008

这个UTC:

$year = gmdate('Y'); // 2008

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

**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

http://us2.php.net/date

echo date('Y');