Created
August 20, 2012 16:03
-
-
Save cam-gists/3405380 to your computer and use it in GitHub Desktop.
PHP: Copyright
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// usage: place your start date into $start variable i.e. $start = '2008' | |
$start = ''; | |
echo( ($start < date('Y') ? 'Copyright © ' . $start . ' - ' . date('Y') . ', all rights reserved' : 'Copyright © ' . $start . ', all rights reserved') ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment