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

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


当前回答

创建一个helper函数并调用它

getCurrentYear();

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

其他回答

<?php echo date("Y"); ?>
$year = date("Y", strtotime($yourDateVar));
strftime("%Y");

我喜欢strftime。这是一个抓取/重新组合日期/时间块的很棒的函数。

此外,它尊重区域设置,日期函数不这样做。

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

**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
<?php date_default_timezone_set("Asia/Kolkata");?><?=date("Y");?>

你可以在页脚部分使用它来获得动态版权年份