summaryrefslogtreecommitdiff
path: root/tests/lang/041.phpt
blob: eef75bdb3fa2f6487850e07381d0d6140ddb45f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Dynamic access of static members
--FILE--
<?php
class A {
    public    static $b = 'foo';
}

$classname       =  'A';
$wrongClassname  =  'B';

echo $classname::$b."\n";
echo $wrongClassname::$b."\n";

?>
===DONE===
--EXPECTF--
foo

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