If I have this number (timestamps): 1324557032
Using PHP how would I find out if this number is within a 30 number range.
eg: between 1324557002 and 1324557062
|
If I have this number (timestamps): Using PHP how would I find out if this number is within a 30 number range. eg: between |
||||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
One solution would be to encapsulate the logic whether a specific number is between A and B inside a function of it's own:
Usage:
|
|||
|
|
<?... – Oli Charlesworth Dec 22 '11 at 0:34if ($num >= 1324557002 && $num <= 1324557062) { /* do something */ }– rdlowrey Dec 22 '11 at 0:34function b($n, $m, $x) { return b($n, $m, $x); }– animuson Dec 22 '11 at 0:36