summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/call_user_method.phpt
blob: cc54ff95441f35e25e4d614787cdcca208d3d697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Basic behaviour of call_user_method() test
--CREDITS--
Sebastian Schürmann 
sebs@php.net
Testfest 2009 Munich
--FILE--
<?php
class a {
	static function b() {
		return true;
	}
}
$a = new a();
$res = call_user_method('b', $a);
var_dump($res);
?>
--EXPECTF--
Deprecated: Function call_user_method() is deprecated in %s on line 8
bool(true)