2011-12-07 18:17:05 +01:00
|
|
|
Return and pass by ref
|
|
|
|
-----
|
|
|
|
<?php
|
|
|
|
|
|
|
|
function a(&$b) {}
|
|
|
|
function &a($b) {}
|
|
|
|
-----
|
|
|
|
array(
|
|
|
|
0: Stmt_Function(
|
|
|
|
byRef: false
|
2014-03-22 14:49:56 +01:00
|
|
|
name: a
|
2011-12-07 18:17:05 +01:00
|
|
|
params: array(
|
|
|
|
0: Param(
|
|
|
|
type: null
|
|
|
|
byRef: true
|
2014-03-26 18:23:30 +01:00
|
|
|
variadic: false
|
|
|
|
name: b
|
|
|
|
default: null
|
2011-12-07 18:17:05 +01:00
|
|
|
)
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: null
|
2011-12-07 18:17:05 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Stmt_Function(
|
|
|
|
byRef: true
|
2014-03-22 14:49:56 +01:00
|
|
|
name: a
|
2011-12-07 18:17:05 +01:00
|
|
|
params: array(
|
|
|
|
0: Param(
|
|
|
|
type: null
|
|
|
|
byRef: false
|
2014-03-26 18:23:30 +01:00
|
|
|
variadic: false
|
|
|
|
name: b
|
|
|
|
default: null
|
2011-12-07 18:17:05 +01:00
|
|
|
)
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: null
|
2011-12-07 18:17:05 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
2017-01-19 22:25:22 +01:00
|
|
|
)
|