Return to Snippet

Revision: 46335
at May 17, 2011 19:49 by dubogii


Initial Code
Current year only

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


With start year

&copy; 2008-<?php echo date("Y") ?>


Start date with error protection

<?php function auto_copyright($year = 'auto'){ ?>
   <?php if(intval($year) == 'auto'){ $year = date('Y'); } ?>
   <?php if(intval($year) == date('Y')){ echo intval($year); } ?>
   <?php if(intval($year) < date('Y')){ echo intval($year) . ' - ' . date('Y'); } ?>
   <?php if(intval($year) > date('Y')){ echo date('Y'); } ?>
<?php } ?>


Usage:

<?php auto_copyright(); // 2011?>

<?php auto_copyright('2010');  // 2010 - 2011 ?>

Initial URL
http://css-tricks.com/snippets/php/automatic-copyright-year/

Initial Description


Initial Title
Automatic Copyright Year

Initial Tags


Initial Language
PHP