Grammar explorer

PHP 8.5 Production

matched-if-statement

Read left to right. Select any rule to explore it.

matched-if-statement railroad diagramRead left to right. Branches are alternatives, bypasses are optional, and loops repeat. Select a production to explore it. The EBNF and linked references follow below."if""("Explore production: expressionexpression")"Explore production: matched-statementmatched-statement"elseif""("Explore production: expressionexpression")"Explore production: matched-statementmatched-statement"else"Explore production: matched-statementmatched-statementExplore production: alternative-if-statementalternative-if-statement
Production LiteralBranch: choiceBypass: optionalLoop: repeat
EBNF source
matched-if-statement =
    "if" , "(" , expression , ")" , matched-statement ,
    { "elseif" , "(" , expression , ")" , matched-statement } , "else" , matched-statement
    | alternative-if-statement ;
Referenced by 2

Take it with you

The grammar, in plain text.

For reading, building tools, and exploring PHP.
Free to use under the MIT license.

A shared understanding of PHP.

php-grammar is an open source project documenting PHP syntax in a consistent, tool-independent format. The EBNF describes syntax; the accompanying specification defines lexical rules and contextual constraints.

Explore the project and contribute