mirror of
https://github.com/php/php-src.git
synced 2025-01-12 14:04:45 +08:00
18 lines
278 B
Plaintext
18 lines
278 B
Plaintext
|
--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
|