xref: /PHP-5.5/Zend/tests/magic_by_ref_005.phpt (revision 90d58d46)
1--TEST--
2passing parameter of __isset() by ref
3--FILE--
4<?php
5
6class test {
7    function __isset(&$name) { }
8}
9
10$t = new test;
11$name = "prop";
12
13var_dump(isset($t->$name));
14
15echo "Done\n";
16?>
17--EXPECTF--
18Fatal error: Method test::__isset() cannot take arguments by reference in %s on line %d
19