File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / indirect_call_array_004.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:36 2012 UTC (12 years, 1 month ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

--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";
}

?>
--EXPECTF--
foo
From foo::__callStatic:
123
------
foo
From foo::__call:
123

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>