File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / classes / static_properties_003_error1.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 5 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

    1: --TEST--
    2: Attempting to access static properties using instance property syntax 
    3: --FILE--
    4: <?php
    5: class C {
    6:     protected static $y = 'C::$y';
    7: }
    8: $c = new C;
    9: 
   10: echo "\n--> Access non-visible static prop like instance prop:\n";
   11: unset($c->y);
   12: ?>
   13: ==Done==
   14: --EXPECTF--
   15: 
   16: --> Access non-visible static prop like instance prop:
   17: 
   18: Fatal error: Cannot access protected property C::$y in %s on line 8

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>