正确的格式应该是:
Copyright [dates] by [author/owner]
通常用 © 代替Copyright,写成:
Copyright © [dates] by [author/owner]
后面还常常会加上All Rights Reserved,写成:
Copyright © [dates] by [author/owner].All Rights Reserved.
解析:
Copyright和©代表:版权
[dates]:年份(常规是截止到现在的时间年)
[author/owner]:作者或所有者
All Rights Reserved:保留所有权利,版权所有。
设公司名称是Apple Inc.
©<!-- 或 -->©
<script type="text/javascript">var d = new Date()document.write(d.getFullYear()) </script>
<?php echo date("Y"); ?>
<?php$copyYear = 2008; // 设置起始年份$curYear = date('Y'); // 获取当前年份echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : '');?>