| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Regular Join Date: Sep 2005 Location: At Home
Posts: 881
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | comparing dates British style Hey everyone! This problem has been baffling me all day today. I am trying to compare dates which are in the British format to see if they are bigger and/or smaller than todays date. This is what I am using: PHP Code: Where am I going wrong?
__________________ |
| |
| | #2 (permalink) |
| Domains my Dominion Join Date: Aug 2005 Location: Web 1.0
Posts: 9,955
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | The date function returns a formatted string. For the purpose of comparison I would use Unix timestamps (numbers) for example. There are several functions that can help you achieve the intended purpose... PHP: DateTime::diff - Manual PHP: mktime - Manual
__________________ NameNewsletter.com - free lists of available domain names ZoneFiles.net (beta) - ccTLD and gTLD droplists |
| |
| | #4 (permalink) | ||||
| NamePros Expert Join Date: Nov 2003 Location: Scotland
Posts: 5,074
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
????: NamePros.com http://www.namepros.com/showthread.php?t=657053 As the format is known it is a simple task for the op to change the time into a unix timestamp. If you use strtotime you may end up with unexpected results.
__________________ Manage your portfolio using my new Domain Portfolio Management script. Securing Your Domain Name From Theft | ||||
| |
| | #6 (permalink) |
| Domains my Dominion Join Date: Aug 2005 Location: Web 1.0
Posts: 9,955
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | How do you assign the $start & $end variables ?
__________________ NameNewsletter.com - free lists of available domain names ZoneFiles.net (beta) - ccTLD and gTLD droplists |
| |
| | #7 (permalink) | ||||
| The MINISITE King Join Date: May 2005 Location: QTHR
Posts: 4,594
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Read, than re-read the documentation for time & date PHP functions . Try a few little examples. When you are comfortable with them, then and only then, try using them in a larger program.
__________________ Studio51 Sites! Often Copied Always Amazing Never Bettered.
Last edited by barefoottech; 05-21-2010 at 04:37 PM.
| ||||
| |