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 %s:%d 21Stack trace: 22#0 {main} 23 thrown in %s041.php on line %d 24