Annotation of embedaddon/php/tests/lang/041.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Dynamic access of static members
! 3: --FILE--
! 4: <?php
! 5: class A {
! 6: public static $b = 'foo';
! 7: }
! 8:
! 9: $classname = 'A';
! 10: $wrongClassname = 'B';
! 11:
! 12: echo $classname::$b."\n";
! 13: echo $wrongClassname::$b."\n";
! 14:
! 15: ?>
! 16: ===DONE===
! 17: --EXPECTF--
! 18: foo
! 19:
! 20: Fatal error: Class 'B' not found in %s041.php on line %d
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>