mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
32 lines
523 B
PHP
32 lines
523 B
PHP
--TEST--
|
|
ZE2 An abstract method cannot be called indirectly
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class test_base
|
|
{
|
|
abstract function func();
|
|
}
|
|
|
|
class test extends test_base
|
|
{
|
|
function func()
|
|
{
|
|
echo __METHOD__ . "()\n";
|
|
}
|
|
}
|
|
|
|
$o = new test;
|
|
|
|
$o->func();
|
|
|
|
try {
|
|
call_user_func(array($o, 'test_base::func'));
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
test::func()
|
|
call_user_func(): Argument #1 ($callback) must be a valid callback, cannot call abstract method test_base::func()
|