PHP Classes

File: vendor/nikic/php-parser/test/code/parser/stmt/namespace/name.test

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/parser/stmt/namespace/name.test   Download  
File: vendor/nikic/php-parser/test/code/parser/stmt/namespace/name.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 648 bytes
 

Contents

Class file image Download
Different name types ----- <?php A; A\B; \A\B; namespace\A\B; ----- array( 0: Expr_ConstFetch( name: Name( parts: array( 0: A ) ) ) 1: Expr_ConstFetch( name: Name( parts: array( 0: A 1: B ) ) ) 2: Expr_ConstFetch( name: Name_FullyQualified( parts: array( 0: A 1: B ) ) ) 3: Expr_ConstFetch( name: Name_Relative( parts: array( 0: A 1: B ) ) ) )