Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
444 views
in Technique[技术] by (71.8m points)

php - Unix Time stamp adding 2 weeks, 4 weeks, 6 weeks, 8 weeks

So I need to get the Unix time correct for my Ternary operator to work. What I am trying to do is to add 2,4,6,8 weeks to my Unix timestamp and echo out If its a 2 week time span it would be a P1 4 weeks it will be a P2 etc... My Unix Timestamp should be echoing out "Is a P4" but is not!

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Look like that you use bad comparsion operator. In your example is $mod smaller than $p4. You must use $eightWeeks >= $mod or $mod <= $eightWeeks
Edit: Ofcourse in this case you must use another logic for distinguish between P1...P4. For example use a Switch statement

switch (true) {
   case $mod <= $twoWeeks:
   echo "Is a P1";
   break;

   case $mod <= $fourWeeks:
   echo "Is a P2";
   break;
   // etc.....
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...