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

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


当前回答

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

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

其他回答

http://us2.php.net/date

echo date('Y');

随着PHP朝着更面向对象的方向发展,我很惊讶这里没有人引用内置的DateTime类:

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

或者在实例化时使用类成员访问的一行程序(php>=5.4):

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

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

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

使用PHP函数date()。

它接受当前日期,然后你给它提供一个格式

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

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

要使用PHP的日期函数获取当前年份,你可以像这样传入“Y”格式字符:

//Getting the current year using
//PHP's date function.

$year = date("Y");
echo $year;

上面的例子将打印出当前年份的完整的4位数字表示。

如果你只想检索2位数格式,那么你可以使用小写的“y”格式字符:

$year = date("y");
echo $year;
1
2
$year = date("y");
echo $year;

上面的代码片段将打印20而不是2020年,或者打印19而不是2019年,等等。