PHP Classes

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

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/parser/stmt/const.test   Download  
File: vendor/nikic/php-parser/test/code/parser/stmt/const.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: 846 bytes
 

Contents

Class file image Download
Global constants ----- <?php const A = 0, B = 1.0, C = 'A', D = E; ----- array( 0: Stmt_Const( consts: array( 0: Const( name: A value: Scalar_LNumber( value: 0 ) ) 1: Const( name: B value: Scalar_DNumber( value: 1 ) ) 2: Const( name: C value: Scalar_String( value: A ) ) 3: Const( name: D value: Expr_ConstFetch( name: Name( parts: array( 0: E ) ) ) ) ) ) )