File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / classes / property_override_protected_private.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

    1: --TEST--
    2: Redeclare inherited protected property as private (duplicates Zend/tests/errmsg_023.phpt).
    3: --FILE--
    4: <?php
    5:   class A
    6:   {
    7:       protected $p = "A::p";
    8:       function showA()
    9:       {
   10:           echo $this->p . "\n";
   11:       }
   12:   }
   13:   
   14:   class B extends A
   15:   {
   16:       private $p = "B::p";
   17:       function showB()
   18:       {
   19:           echo $this->p . "\n";
   20:       }
   21:   }
   22:   
   23:   
   24:   $a = new A;
   25:   $a->showA();
   26:   
   27:   $b = new B;
   28:   $b->showA();
   29:   $b->showB();
   30: ?>
   31: --EXPECTF--
   32: 
   33: Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18

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