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 7420501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T08:14:59+00:00 2026-05-29T08:14:59+00:00

I have an object which has a state property, for example state = ‘state4’

  • 0

I have an object which has a state property, for example state = ‘state4’ or state = ‘state2’.

Now I also have an array of all available states that the state property can get, state1 to state8 (note: the states are not named stateN. They have eight different names, like payment or canceled. I just put stateN to describe the problem).

In addition to that, I have a logical expression like $expression = !state1||state4&&(!state2||state5) for example. This is the code for the above description:

$state = 'state4';
$expression = '!state1||state4&&(!state2||state5)';

Now I want to check if the logical expression is true or false. In the above case, it’s true. In the following case it would be false:

$state = 'state1';
$expression = state4&&!state2||(!state1||state7);

How could this be solved in an elegant way?

  • 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-29T08:15:02+00:00Added an answer on May 29, 2026 at 8:15 am
    //Initialize
    $state = 'state4';
    $expression = '!state1||state4&&(!state2||state5)';
    
    //Adapt to your needs
    $pattern='/state\d/';
    
    //Replace
    $e=str_replace($state,'true',$expression);
    while (preg_match_all($pattern,$e,$matches)
       $e=str_replace($matches[0],'false',$e);
    
    //Eval
    eval("\$result=$e;");
    echo $result;
    

    Edit:

    Your update to the OQ necessitates some minor work:

    //Initialize
    $state = 'payed';
    $expression = '!payed||cancelled&&(!whatever||shipped)';
    
    //Adapt to your needs
    $possiblestates=array(
       'payed',
       'cancelled',
       'shipped',
       'whatever'
    );
    
    //Replace
    $e=str_replace($state,'true',$expression);
    $e=str_replace($possiblestates,'false',$e);
    
    //Eval
    eval("\$result=$e;");
    echo $result;
    

    Edit 2

    There has been concern about eval and PHP injection in the comments: The expression and the replacements are completly controlled by the application, no user input involved. As long as this holds, eval is safe.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have object A which in turn has a property of type Object B
I have an object which has several properties that are set when the object
So I have an object which has some fields, doesn't really matter what. I
In the ADO.Net Entity Framework, I have an object which has 4 references to
I have a parent object which has a one to many relationship with an
I have a JPA object which has a many-to-many relationship like this: @Entity public
I have a productVariant object which has child product object. I want to show
I have an Object CaseNote which has numerous child object's like CaseNoteContactType . For
I have an XElement object which has a number of attributes and I simply
I have an object config which has some properties. I can export this ok,

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.