PHP Classes

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

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

Contents

Class file image Download
Return and pass by ref ----- <?php function a(&$b) {} function &a($b) {} ----- array( 0: Stmt_Function( byRef: false name: a params: array( 0: Param( type: null byRef: true variadic: false name: b default: null ) ) returnType: null stmts: array( ) ) 1: Stmt_Function( byRef: true name: a params: array( 0: Param( type: null byRef: false variadic: false name: b default: null ) ) returnType: null stmts: array( ) ) )