php-src/ext/reflection/tests/003.phpt

32 lines
334 B
Plaintext
Raw Normal View History

2004-09-29 08:48:16 +00:00
--TEST--
ReflectionMethod::invoke() with base class method
2004-09-29 08:48:16 +00:00
--FILE--
<?php
class Foo
{
function Test()
{
echo __METHOD__ . "\n";
}
}
class Bar extends Foo
{
function Test()
{
echo __METHOD__ . "\n";
}
}
$o = new Bar;
$r = new ReflectionMethod('Foo','Test');
$r->invoke($o);
?>
===DONE===
--EXPECT--
Foo::Test
===DONE===