PHP Classes

File: vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/args.test

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

Contents

Class file image Download
Arguments ----- <?php f(); f($a); f($a, $b); f(&$a); f($a, ...$b); ----- array( 0: Expr_FuncCall( name: Name( parts: array( 0: f ) ) args: array( ) ) 1: Expr_FuncCall( name: Name( parts: array( 0: f ) ) args: array( 0: Arg( value: Expr_Variable( name: a ) byRef: false unpack: false ) ) ) 2: Expr_FuncCall( name: Name( parts: array( 0: f ) ) args: array( 0: Arg( value: Expr_Variable( name: a ) byRef: false unpack: false ) 1: Arg( value: Expr_Variable( name: b ) byRef: false unpack: false ) ) ) 3: Expr_FuncCall( name: Name( parts: array( 0: f ) ) args: array( 0: Arg( value: Expr_Variable( name: a ) byRef: true unpack: false ) ) ) 4: Expr_FuncCall( name: Name( parts: array( 0: f ) ) args: array( 0: Arg( value: Expr_Variable( name: a ) byRef: false unpack: false ) 1: Arg( value: Expr_Variable( name: b ) byRef: false unpack: true ) ) ) )