xref: /PHP-7.4/tests/lang/041.phpt (revision e97d5fab)
1--TEST--
2Dynamic access of static members
3--FILE--
4<?php
5class A {
6    public    static $b = 'foo';
7}
8
9$classname       =  'A';
10$wrongClassname  =  'B';
11
12echo $classname::$b."\n";
13echo $wrongClassname::$b."\n";
14
15?>
16===DONE===
17--EXPECTF--
18foo
19
20Fatal error: Uncaught Error: Class 'B' not found in %s041.php:%d
21Stack trace:
22#0 {main}
23  thrown in %s041.php on line %d
24