mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-14 18:36:59 +01:00
43 lines
942 B
Plaintext
43 lines
942 B
Plaintext
|
Special function variables
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
function a() {
|
||
|
global $a, $b;
|
||
|
static $c, $d = 'e';
|
||
|
}
|
||
|
-----
|
||
|
array(
|
||
|
0: Stmt_Function(
|
||
|
byRef: false
|
||
|
params: array(
|
||
|
)
|
||
|
stmts: array(
|
||
|
0: Stmt_Global(
|
||
|
vars: array(
|
||
|
0: Expr_Variable(
|
||
|
name: a
|
||
|
)
|
||
|
1: Expr_Variable(
|
||
|
name: b
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
1: Stmt_Static(
|
||
|
vars: array(
|
||
|
0: Stmt_StaticVar(
|
||
|
name: c
|
||
|
default: null
|
||
|
)
|
||
|
1: Stmt_StaticVar(
|
||
|
name: d
|
||
|
default: Scalar_String(
|
||
|
value: e
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
name: a
|
||
|
)
|
||
|
)
|