mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 09:29:47 +01:00
32 lines
549 B
Plaintext
32 lines
549 B
Plaintext
|
Conditional function definition
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
if (true) {
|
||
|
function A() {}
|
||
|
}
|
||
|
-----
|
||
|
array(
|
||
|
0: Stmt_If(
|
||
|
stmts: array(
|
||
|
0: Stmt_Function(
|
||
|
byRef: false
|
||
|
params: array(
|
||
|
)
|
||
|
stmts: array(
|
||
|
)
|
||
|
name: A
|
||
|
)
|
||
|
)
|
||
|
elseifs: array(
|
||
|
)
|
||
|
else: null
|
||
|
cond: Expr_ConstFetch(
|
||
|
name: Name(
|
||
|
parts: array(
|
||
|
0: true
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|