Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Evan Walsh http://nothingconcept.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

PHP Copyright Updater

// PHP Copyright Updater
// by Evan Walsh
// NothingConcept.com

This code will automatically change the copyright on your site as the year changes. Tested and approved by me.

Just call this in one of your PHP files by including the file with this code in it:

   1  
   2  <?php
   3  //Licensed under the GPL v2
   4  //by Evan Walsh of nothingconcept.com
   5  function copyright($site,$year) {
   6      $current = date(Y);
   7      if($year == $current) { $eyear = $year; }
   8      else { $eyear = "$year - $current"; }
   9      echo "All content &copy; $eyear $site";
  10  }
  11  ?>


Example: <?php include('functions.php'); ?>

Then place <?php copyright("Sitename","2007"); ?> or something similar in the place you want the copyright to display.

Simple as that.
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS