Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 01-31-2007, 05:13 AM   #1
mrthumbs
salad tossing sig guy
 
mrthumbs's Avatar
 
Join Date: Apr 2002
Location: mrthumbs*gmail.com
Posts: 11,702
php question: today Yesterday Tomorow

Is there a quick way to determine if a certain date is Tomorrow or Yesterday?
mrthumbs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-31-2007, 05:27 AM   #2
sexjoe
Registered User
 
Join Date: Nov 2005
Posts: 19
Quote:
Originally Posted by mrthumbs View Post
Is there a quick way to determine if a certain date is Tomorrow or Yesterday?
function whichDay($d)
{
if (date('dmY',time()+86400)==date('dmY',$d)) return 't';
if (date('dmY',time()-86400)==date('dmY',$d)) return 'y';
if (date('dmY',time())==date('dmY',$d)) return 'n';
return '';
}

returns t for tomorow, y for yesterday, n for same day and empty string for others...
param must be an unix timestamp, for conversion see PHP mktime function...
sexjoe is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.