Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
By using <?... – Oli Charlesworth Dec 22 '11 at 0:34
1  
if ($num >= 1324557002 && $num <= 1324557062) { /* do something */ } – rdlowrey Dec 22 '11 at 0:34
1  
This is elementary school level thing.. – Mohit Jain Dec 22 '11 at 0:35
function b($n, $m, $x) { return b($n, $m, $x); } – animuson Dec 22 '11 at 0:36
3  
What is your concrete problem to find out? If you can't write any code, just describe into which wall you run into. – hakre Dec 22 '11 at 0:48

closed as not a real question by casperOne Jun 7 '12 at 13:08

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.

1 Answer

One solution would be to encapsulate the logic whether a specific number is between A and B inside a function of it's own:

/**
 * Integer number is between $a and $b
 *
 * @oaram int $number 
 * @param int $a
 * @param int $b
 * @return boolean
 */
function number_is_between($number, $a, $b)
{
   $min = min($a, $b);
   $max = max($a, $b);
   if ($number < $min) return FALSE;
   if ($number > $max) return FALSE;
   return TRUE;
}

Usage:

 echo 'Number is ';
 if (FALSE === number_is_between($timestamp, 1324557002, 1324557062))
 {
    echo 'not ';
 }
 echo 'between the numbers.';
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.