2011-11-27 11:20:35 +01:00
|
|
|
Aliases (use)
|
|
|
|
-----
|
|
|
|
<?php
|
|
|
|
|
|
|
|
use A\B;
|
|
|
|
use C\D as E;
|
|
|
|
use F\G as H, J;
|
2011-11-27 21:43:27 +01:00
|
|
|
|
|
|
|
// evil alias notation - Do Not Use!
|
|
|
|
use \A;
|
|
|
|
use \A as B;
|
2011-11-27 11:20:35 +01:00
|
|
|
-----
|
|
|
|
array(
|
|
|
|
0: Stmt_Use(
|
|
|
|
uses: array(
|
|
|
|
0: Stmt_UseUse(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: A
|
|
|
|
1: B
|
|
|
|
)
|
|
|
|
)
|
|
|
|
alias: B
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Stmt_Use(
|
|
|
|
uses: array(
|
|
|
|
0: Stmt_UseUse(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: C
|
|
|
|
1: D
|
|
|
|
)
|
|
|
|
)
|
|
|
|
alias: E
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
2: Stmt_Use(
|
|
|
|
uses: array(
|
|
|
|
0: Stmt_UseUse(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: F
|
|
|
|
1: G
|
|
|
|
)
|
|
|
|
)
|
|
|
|
alias: H
|
|
|
|
)
|
|
|
|
1: Stmt_UseUse(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: J
|
|
|
|
)
|
|
|
|
)
|
|
|
|
alias: J
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2011-11-27 21:43:27 +01:00
|
|
|
3: Stmt_Use(
|
|
|
|
uses: array(
|
|
|
|
0: Stmt_UseUse(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: A
|
|
|
|
)
|
|
|
|
)
|
|
|
|
alias: A
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
4: Stmt_Use(
|
|
|
|
uses: array(
|
|
|
|
0: Stmt_UseUse(
|
|
|
|
name: Name(
|
|
|
|
parts: array(
|
|
|
|
0: A
|
|
|
|
)
|
|
|
|
)
|
|
|
|
alias: B
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
)
|