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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:27:32+00:00 2026-05-22T02:27:32+00:00

Possible Duplicates: php multiple if conditions What is better ? Multiple if statements, or

  • 0

Possible Duplicates:
php multiple if conditions
What is better ? Multiple if statements, or one if with multiple conditions

So I was working on a segment of code in which I ended up using two different styles of if statements. That got me wondering – which one is more efficient in PHP? Are there times when one might be better than the other, despite general differences (if present)? Is there a certain level of complexity where the benefits become clear (if close) or close (if originally clear)? Also, are there other benefits of one method over the other, other than aesthetic or subjective differences?

if ($value == 'someval') {
  if($otherval == 'someval') {
    // do stuff
  } else if ($otherval == 'otherval') {
    // do same stuff
  }
}

vs

if (($value == 'someval') && ($otherval == 'someval' || $thirdval == 'someval') {
  // do stuff
}

Note – I don’t care what works for C# or Java or whatever other language, unless someone can show that they handle the construct exactly the same.

  • 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-22T02:27:33+00:00Added an answer on May 22, 2026 at 2:27 am

    So long as you’re executing the same code in each block (as you’ve indicated by your comments) then they’ll both do the trick (and no, there’s really not much of a performance difference).

    However, typically it’s not the case that you’d execute the same code both ways, so logically the first block is actually different from the second in that case. Here’s an example:

    if($value == 'someval') {
       if($otherval == 'someval') {
         doSomething();
       }
       else if ($otherval == 'otherval') {
         doSomethingElse();
       }
    }
    

    versus:

    if(($value == 'someval') && ($otherval == 'someval' || $otherval == 'otherval')) {
       //we now still need to evaluate $otherval in order to determine which func to execute...
       //this adds bloat...
       if($otherval == 'someval') {
         doSomething();
       }
       else if ($otherval == 'otherval') {
         doSomethingElse();
       }
    }
    

    So as you can see in the case above the second block is actually less efficient than the first.

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

Sidebar

Related Questions

Possible Duplicate: PDO Prepared Statements I'm using the mysqli extension in PHP and I'm
Possible Duplicates: Convert HTML + CSS to PDF with PHP? I am working with
Possible Duplicates: Checking for a valid url using Javascript Regular Expressions PHP validation/regex for
Possible Duplicates: What's better at freeing memory with PHP: unset() or $var = null
Possible Duplicates: Want to render an image without saving it to disk using PHP
Possible Duplicate: NAnt or MSBuild, which one to choose and when? What is the
Possible Duplicates: Create a webpage with Multilanguage in PHP PHP - how to translate
Possible Duplicates: How do I use that “<<<HTML” thing in PHP? PHP <<<EOB $sql
Possible Duplicate: insert multiple rows via a php array into mysql I know about
Possible Duplicate: PHPMailer AddAddress() Here is my code. require('class.phpmailer.php'); $mail = new PHPMailer(); $email

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.