著作権表示の年を自動取得する

UTF-8で書いているなら、Copyright記号【© 】は実体参照【© 】にしなくて大丈夫。
(そもそも著作権表示自体が不要だけど要望多し…)

© 2024 All Rights Reserved.
来年は2025年です。

<div>© <?php echo date('Y'); ?> All Rights Reserved.</div>

//来年
<div>来年は<?php echo date('Y', strtotime('+1 year')); ?>年です。</div>
© All Rights Reserved.

<div>© 
		<script>
			myDate = new Date() ;myYear = myDate.getFullYear ();document.write(myYear);
		</script> 
	All Rights Reserved.
</div>

TOP