Jump to content

Comparison


maliary

Recommended Posts

 

Hello,

 

I would like to compare 3 different time stamps  ts1,ts2,ts3, and increment the value with the most recent or greatest time stamp.

 

I keep missing out a comparison, could any one check this out.

 

This is what I have

if (ts1 > ts2)
  { 
  if (ts1>ts3)
      {
     ts2++;
    }
}
elseif (ts2>ts3)
{  
   (ts2>ts1)
     {
      ts2++
      }
}
elseif (ts3>ts2)
{
   ts3>ts2
{
    ts3++
}

}

 

What more comparisons should I make ?

 

 

 

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/113607-comparison/
Share on other sites

here is something quick. It uses the max command

 

<?php
$ts1 = 333333;
$ts2 = 444444;
$ts3 = 555555;
$values = array('ts1'=> $ts1, 'ts2' => $ts2, 'ts3' => $ts3);
$max = max($values);
$s = array_search($max, $values);
$$s++;
echo "ts1 = $ts1, ts2 = $ts2, ts3 = $ts3";
?>

 

Ray

Link to comment
https://forums.phpfreaks.com/topic/113607-comparison/#findComment-583759
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.