summaryrefslogtreecommitdiff
path: root/tests/lang/passByReference_004.phpt
blob: a890411b7101d2318cf6c235b8d13245bbdd4e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
passing the return value from a function by reference
--FILE--
<?php

function foo(&$ref)
{
	var_dump($ref);
}

function bar($value)
{
	return $value;
}

foo(bar(5));

?>
--EXPECTF--
Notice: Only variables should be passed by reference in %s on line 13
int(5)