Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5846619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:36:09+00:00 2026-05-22T12:36:09+00:00

The situation is like this: there is a continuous loop, that updates some values.

  • 0

The situation is like this: there is a continuous loop, that updates some values. Then the script checks certain conditions. The (simplified) code:

<?php
set_time_limit(0);
// etc
while(1==1)
{
    $a = getFromDatabase('a'); // function to get value of A
    $b = getFromDatabase('b'); // function to get value of B
    $c = getFromDatabase('c'); // function to get value of C
    $d = getFromDatabase('d'); // function to get value of D

    if($a >= 12 && time() <= $b && ($d === false || $d <= time()))
    {
         include 'pages/'.$a.'.php';
    }
    if($b <= 3 && time() >= $d && ($c === false || $c <= time()))
    {
         include 'pages/'.$b.'.php';
    }
}

My question is: how can I change the order of these IF-statements dynamically?

Like

$order = array('b','a'); // first b then a

Important: the if conditions are really dynamic. So there is no real pattern (the example above is simplified, so not the full conditions)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T12:36:09+00:00Added an answer on May 22, 2026 at 12:36 pm

    Put them in functions, then just store the name of the functions and go through each in turn.

    function func1($a, $b, $c, $d)
    {
      if (...)
      {
        return $a
      }
      return false;
    }
    
    function func2($a, $b, $c, $d)
     ...
    
    $funcs = Array('func1', 'func2');
    
     ...
    
    foreach($funcs as $func)
    {
      if ($page = $func($a, $b, $c, $d))
      {
        include "pages/$page.php"
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a situation like this: there are three Django models, let's call them
The topic generically says it all. Basically in a situation like this: boost::scoped_array<int> p(new
The situation is like this : Main project A. and a class library B.
I know a question like this was already asked, but the situation is a
I have a problem that seems like its a result of a deadlock-situation. Whe
#For say, I got a situation like this user_id = c(1:5,1:5) time = c(1:10)
The situation is like this. The format of the date in SQL server is
For a situation like capturing text incrementally, for example if you were receiving all
The situation is somewhat like- var someVar = some_other_function(); someObj.addEventListener(click, function(){ some_function(someVar); }, false);
In a situation where you have something like a Lite, Normal, Ultimate tiers and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.