You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

70 lines
1.4 KiB

Declare
-----
<?php
declare (X='Y');
declare (A='B', C='D') {}
declare (A='B', C='D'):
enddeclare;
-----
array(
0: Stmt_Declare(
declares: array(
0: Stmt_DeclareDeclare(
key: Identifier(
name: X
)
value: Scalar_String(
value: Y
)
)
)
stmts: null
)
1: Stmt_Declare(
declares: array(
0: Stmt_DeclareDeclare(
key: Identifier(
name: A
)
value: Scalar_String(
value: B
)
)
1: Stmt_DeclareDeclare(
key: Identifier(
name: C
)
value: Scalar_String(
value: D
)
)
)
stmts: array(
)
)
2: Stmt_Declare(
declares: array(
0: Stmt_DeclareDeclare(
key: Identifier(
name: A
)
value: Scalar_String(
value: B
)
)
1: Stmt_DeclareDeclare(
key: Identifier(
name: C
)
value: Scalar_String(
value: D
)
)
)
stmts: array(
)
)
)