php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #55311
Patch bug55311.phpt revision 2011-07-29 03:31 UTC by laruence@php.net
Patch bug55311.patch revision 2011-07-29 03:29 UTC by laruence@php.net

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
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri Apr 04 23:01:30 2025 UTC