Advertisement
Guest User

Untitled

a guest
Jan 10th, 2013
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. function getFarFutureTime() {
  2.     /* This is used to set a cookie to expire some time in the future.
  3.     We'll make it 31/12/2025 so that an update to the site should be done before then.
  4.     This is how Y2K style bugs are started, but if this is site remains unmodified
  5.     till 2025, i'll do the update pro bono :) */
  6.     $thetime = mktime(10,10,10,12,31,2025);
  7.     return $thetime;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement