Home  >  Article  >  Backend Development  >  php动态生成版权所有信息的方法_PHP

php动态生成版权所有信息的方法_PHP

WBOY
WBOYOriginal
2016-05-31 11:45:39728browse

本文实例讲述了php动态生成版权所有信息的方法。分享给大家供大家参考。具体实现方法如下:

function copyright($start, $owner) {
$date = date('Y');
 echo "© Copyright ";
 if ( $start < $date ) {
 echo "{$start} - ";
 }
 echo "{$date} {$owner}";
}

演示范例:

如果当前年份是2013, 使用

copyright('2012', 'jb51.net');

将输出:

© Copyright 2012 - 2015 jb51.net

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn