Are "elseif" and "else if" completely synonymous?

PhpSyntaxConditional Statements

Php Problem Overview


Are elseif and else if completely synonymous, or is there a difference?

Does Zend have an accepted "standard" on which one to use?

While I personally dislike seeing elseif in the code, I just need to know if they're synonymous and the PHP manual isn't the easiest to search.

Php Solutions


Solution 1 - Php

From the PHP manual:

> In PHP, you can also write 'else if' (in two words) and the behavior would be identical to the one of 'elseif' (in a single word). The syntactic meaning is slightly different (if you're familiar with C, this is the same behavior) but the bottom line is that both would result in exactly the same behavior.

Essentially, they will behave the same, but else if is technically equivalent to a nested structure like so:

if (first_condition)
{

}
else
{
  if (second_condition)
  {
  
  }
}

The manual also notes:

> Note that elseif and else if will only be considered exactly the same when using curly brackets as in the above example. When using a colon to define your if/elseif conditions, you must not separate else if into two words, or PHP will fail with a parse error.

Which means that in the normal control structure form (ie. using braces):

if (first_condition)
{

}
elseif (second_condition)
{

}

either elseif or else if can be used. However, if you use the alternate syntax, you must use elseif:

if (first_condition):
  // ...
elseif (second_condition):
  // ...
endif;

Solution 2 - Php

The Framework Interoperability Group (FIG) which is made up of members that include the developers of Zend ( https://github.com/php-fig/fig-standards#voting-members ) , put together a series of Standard recommendations (PSR-#).

Zend2 and Symfony2 already follows PSR-0.

There's no hard and fast rules for styles, but you can try and follow as much of PSR-2 as you can.

There's a comment on else if vs elseif in PSR-2:

> The keyword elseif SHOULD be used instead of else if so that all > control keywords look like single words.

https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md#51-if-elseif-else

Some of the recommendations are just that, recommendations. It's up to you whether to use else if or elseif

Solution 3 - Php

Yes, "elseif" and "else if" both are synonymous, alike in meaning and significance. You can mix "else if" with "elseif" together.

For Example - We can use "else if" and "elseif" together.
if($condition){
  ...
}
else if($condition){
  ...
}
elseif($condition){
  ...
}

Nested:
if($condition){
  ...
}
else if($condition){
  if($condition){
    ...
  }
  elseif($condition){
    ...
  }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTheodore R. SmithView Question on Stackoverflow
Solution 1 - PhpDaniel VandersluisView Answer on Stackoverflow
Solution 2 - PhpJames CowhenView Answer on Stackoverflow
Solution 3 - PhpShaktiView Answer on Stackoverflow