mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
18 lines
278 B
PHP
18 lines
278 B
PHP
--TEST--
|
|
passing parameter of __get() by ref
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
function __get(&$name) { }
|
|
}
|
|
|
|
$t = new test;
|
|
$name = "prop";
|
|
var_dump($t->$name);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Method test::__get() cannot take arguments by reference in %s on line %d
|