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

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


当前回答

strftime("%Y");

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

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

其他回答

如果你的服务器支持短标签,或者你使用PHP 5.4,你可以使用:

<?=date("Y")?>

我显示版权的方式,它会自动更新

<p class="text-muted credit">Copyright &copy;
    <?php
        $copyYear = 2017; // Set your website start date
        $curYear = date('Y'); // Keeps the second year updated
        echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : '');
    ?> 
</p>    

它将输出结果为

copyright @ 2017   //if $copyYear is 2017 
copyright @ 2017-201x    //if $copyYear is not equal to Current Year.
print date('Y');

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

适用于php 5.4+版本

<?php
    $current= new \DateTime();
    $future = new \DateTime('+ 1 years');

    echo $current->format('Y'); 
    //For 4 digit ('Y') for 2 digit ('y')
?>

或者你可以把它用在一行上

$year = (new DateTime)->format("Y");

如果你想增加或减少一年另一个方法;添加修改行如下所示。

<?PHP 
  $now   = new DateTime;
  $now->modify('-1 years'); //or +1 or +5 years 
  echo $now->format('Y');
  //and here again For 4 digit ('Y') for 2 digit ('y')
?>
<?php echo date("Y"); ?>