]> granicus.if.org Git - php/commitdiff
Initial commit
authorSebastian Schürmann <sebs@php.net>
Sat, 25 Apr 2009 18:59:54 +0000 (18:59 +0000)
committerSebastian Schürmann <sebs@php.net>
Sat, 25 Apr 2009 18:59:54 +0000 (18:59 +0000)
ext/standard/tests/general_functions/call_user_method.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/general_functions/call_user_method.phpt b/ext/standard/tests/general_functions/call_user_method.phpt
new file mode 100644 (file)
index 0000000..cc54ff9
--- /dev/null
@@ -0,0 +1,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)