mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
22 lines
492 B
PHP
22 lines
492 B
PHP
--TEST--
|
|
Trigger __call() in lieu of non visible methods when called via a callback.
|
|
--FILE--
|
|
<?php
|
|
class C {
|
|
protected function prot() { }
|
|
private function priv() { }
|
|
public function __call($name, $args) {
|
|
echo "In __call() for method $name()\n";
|
|
}
|
|
}
|
|
|
|
$c = new C;
|
|
call_user_func(array($c, 'none'));
|
|
call_user_func(array($c, 'prot'));
|
|
call_user_func(array($c, 'priv'));
|
|
?>
|
|
--EXPECT--
|
|
In __call() for method none()
|
|
In __call() for method prot()
|
|
In __call() for method priv()
|