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