php-src/Zend/tests/bug69124.phpt
2020-02-03 22:52:20 +01:00

22 lines
354 B
PHP

--TEST--
Bug 69124: Method name must be as string (invalid error message when using reference to a string)
--FILE--
<?php
class Foo {
public function bar() {
print "Success\n";
}
}
function test(&$instance, &$method) {
$instance->{$method}();
}
$instance = new Foo;
$method = "bar";
test($instance, $method);
?>
--EXPECT--
Success