php-src/Zend/tests/magic_by_ref_002.phpt
2018-10-14 19:45:12 +02:00

17 lines
267 B
PHP

--TEST--
passing second parameter of __set() by ref
--FILE--
<?php
class test {
function __set($name, &$val) { }
}
$t = new test;
$t->prop = 1;
echo "Done\n";
?>
--EXPECTF--
Fatal error: Method test::__set() cannot take arguments by reference in %s on line %d