mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
72 lines
924 B
PHP
72 lines
924 B
PHP
--TEST--
|
|
Indirect method call by array - Testing exception and method magics
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
static public function abc() {
|
|
throw new Exception('foo');
|
|
}
|
|
public function __call($a, $b) {
|
|
printf("From %s:\n", __METHOD__);
|
|
throw new Exception($a);
|
|
}
|
|
static public function __callStatic($a, $b) {
|
|
printf("From %s:\n", __METHOD__);
|
|
throw new Exception($a);
|
|
}
|
|
}
|
|
|
|
|
|
$arr = array('foo', 'abc');
|
|
|
|
try {
|
|
$arr();
|
|
}
|
|
catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
$arr = array('foo', '123');
|
|
|
|
try {
|
|
$arr();
|
|
}
|
|
catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
|
|
echo "------\n";
|
|
|
|
$foo = new foo;
|
|
$arr = array($foo, 'abc');
|
|
|
|
try {
|
|
$arr();
|
|
}
|
|
catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
|
|
$foo = new foo;
|
|
$arr = array($foo, '123');
|
|
|
|
try {
|
|
$arr();
|
|
}
|
|
catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
foo
|
|
From foo::__callStatic:
|
|
123
|
|
------
|
|
foo
|
|
From foo::__call:
|
|
123
|