summaryrefslogtreecommitdiff
path: root/tests/lang/044.phpt
blob: bc5900a301ec85a451a20c92b8cd61ef9ab7d8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--TEST--
Dynamic call for static methods dynamically named
--FILE--
<?php
class A {
    static function foo() { return 'foo'; }
}
$classname        =  'A';
$wrongClassname   =  'B';

$methodname       =  'foo';

echo $classname::$methodname()."\n";

echo $wrongClassname::$methodname()."\n";
?>
===DONE===
--EXPECTF--
foo

Fatal error: Uncaught exception 'EngineException' with message 'Class 'B' not found' in %s044.php:%d
Stack trace:
#0 {main}
  thrown in %s044.php on line %d