blob: 0d22c0ef4d591957dec9702abfb3fbc40c4d0817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
passing first parameter of __call() by ref
--FILE--
<?php
class test {
function __call(&$name, $args) { }
}
$t = new test;
$func = "foo";
$t->$func();
echo "Done\n";
?>
--EXPECTF--
Fatal error: Method test::__call() cannot take arguments by reference in %s on line %d
|