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

  • SEARCH
  • Home
  • 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: public abstract class BaseClass { public abstract string
I'm having situation like 3 select box is there in a form <form> <select
I'm using PHP, and the Kohana framework, but that should be peripheral to this
Thought I would throw this one out there and see what other people's experiences
In a recent question , I learned that there are situations where you just
I have a form that appears as shown in the attached image. I have
Recently I just finished a simple Facebook Air application, and some of my friends
This problem is probably trivial for 99% of you. So far I always tried
A fairly common use case occurs where there is a list of Java objects,
Someone I know went to an interview and was given the following problem to

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.