php-src/tests/lang/passByReference_004.phpt

22 lines
279 B
PHP

--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--
Strict Standards: Only variables should be passed by reference in %s on line 13
int(5)