Patch bug55311.phpt for *General Issues Bug #55311
Patch version 2011-07-29 03:31 UTC
Return to Bug #55311 |
Download this patch
Patch Revisions:
Developer: laruence@php.net
--TEST--
Bug #50383 (Static methods invoke __call when called from within class)
--FILE--
<?php
class Test {
public function __call($method, $args) {
echo "call\n";
}
public static function __callStatic($method, $args) {
echo "callStatic\n";
}
public function testing() {
Test::fakeFunction();
}
}
$t = new Test;
$t->testing();
Test::fakeFunction();
?>
--EXPECT--
callStatic
callStatic
|