1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- If/Elseif/Else
- -----
- <?php
- if ($a) {}
- elseif ($b) {}
- elseif ($c) {}
- else {}
- if ($a) {} // without else
- if ($a):
- elseif ($b):
- elseif ($c):
- else :
- endif;
- if ($a): endif; // without else
- -----
- array(
- 0: Stmt_If(
- stmts: array(
- )
- elseifs: array(
- 0: Stmt_ElseIf(
- cond: Expr_Variable(
- name: b
- )
- stmts: array(
- )
- )
- 1: Stmt_ElseIf(
- cond: Expr_Variable(
- name: c
- )
- stmts: array(
- )
- )
- )
- else: Stmt_Else(
- stmts: array(
- )
- )
- cond: Expr_Variable(
- name: a
- )
- )
- 1: Stmt_If(
- stmts: array(
- )
- elseifs: array(
- )
- else: null
- cond: Expr_Variable(
- name: a
- )
- )
- 2: Stmt_If(
- stmts: array(
- )
- elseifs: array(
- 0: Stmt_ElseIf(
- cond: Expr_Variable(
- name: b
- )
- stmts: array(
- )
- )
- 1: Stmt_ElseIf(
- cond: Expr_Variable(
- name: c
- )
- stmts: array(
- )
- )
- )
- else: Stmt_Else(
- stmts: array(
- )
- )
- cond: Expr_Variable(
- name: a
- )
- )
- 3: Stmt_If(
- stmts: array(
- )
- elseifs: array(
- )
- else: null
- cond: Expr_Variable(
- name: a
- )
- )
- )
|