Don't like ads? PRO users don't see any ads ;-)

Untitled

By: balaji047 on May 31st, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3. class a {
  4.     protected $msg = 'hallo';
  5.     function write() { print $this->msg; }
  6. }
  7.  
  8. class b extends a {
  9.     protected $msg = 'world';
  10.     function write() { parent::write(); }
  11. }
  12.  
  13. $b = new b();
  14. $b->write();