File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
Zend /
tests /
bug45186.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:47:52 2012 UTC (13 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,
v5_3_10,
HEAD
php
--TEST--
Bug #45186 (__call depends on __callstatic in class scope)
--FILE--
<?php
class bar {
public function __call($a, $b) {
print "__call:\n";
var_dump($a);
}
static public function __callstatic($a, $b) {
print "__callstatic:\n";
var_dump($a);
}
public function test() {
self::ABC();
bar::ABC();
call_user_func(array('BAR', 'xyz'));
call_user_func('BAR::www');
call_user_func(array('self', 'y'));
call_user_func('self::y');
}
static function x() {
print "ok\n";
}
}
$x = new bar;
$x->test();
call_user_func(array('BAR','x'));
call_user_func('BAR::www');
call_user_func('self::y');
?>
--EXPECTF--
__call:
string(3) "ABC"
__call:
string(3) "ABC"
__call:
string(3) "xyz"
__call:
string(3) "www"
__call:
string(1) "y"
__call:
string(1) "y"
ok
__callstatic:
string(3) "www"
Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access self:: when no class scope is active in %sbug45186.php on line 31
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>