mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
22 lines
279 B
PHP
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)
|