php-parser/test/code/parser/stmt/function/specialVars.test

59 lines
1.4 KiB
Plaintext
Raw Normal View History

2011-11-27 11:20:35 +01:00
Special function variables
-----
<?php
function a() {
global $a, ${'b'}, $$c;
2011-11-27 11:20:35 +01:00
static $c, $d = 'e';
}
-----
array(
0: Stmt_Function(
attrGroups: array(
)
2011-11-27 11:20:35 +01:00
byRef: false
name: Identifier(
name: a
)
2011-11-27 11:20:35 +01:00
params: array(
)
returnType: null
2011-11-27 11:20:35 +01:00
stmts: array(
0: Stmt_Global(
vars: array(
0: Expr_Variable(
name: a
)
1: Expr_Variable(
name: Scalar_String(
value: b
)
)
2: Expr_Variable(
name: Expr_Variable(
name: c
)
2011-11-27 11:20:35 +01:00
)
)
)
1: Stmt_Static(
vars: array(
0: Stmt_StaticVar(
var: Expr_Variable(
2017-01-19 23:23:38 +01:00
name: c
)
2011-11-27 11:20:35 +01:00
default: null
)
1: Stmt_StaticVar(
var: Expr_Variable(
2017-01-19 23:23:38 +01:00
name: d
)
2011-11-27 11:20:35 +01:00
default: Scalar_String(
value: e
)
)
)
)
)
)
2017-01-19 22:25:22 +01:00
)