2011-06-14 10:05:37 +08:00
|
|
|
--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";
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2018-02-19 16:59:41 +08:00
|
|
|
--EXPECT--
|
2011-06-14 10:05:37 +08:00
|
|
|
foo
|
|
|
|
From foo::__callStatic:
|
|
|
|
123
|
|
|
|
------
|
|
|
|
foo
|
|
|
|
From foo::__call:
|
|
|
|
123
|