Pages

Automatic Display Copyright Year

The following is a trick to display the copyright year ini php

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(); // 2014?>

<?php auto_copyright('2005');  // output 2005 - 2014 ?>

No comments:

Post a Comment