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

Untitled

By: a guest on May 25th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 11  |  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. class ParentZboub
  2. {
  3.   private $zboub;
  4.  
  5.   public function doZboub()
  6.   {
  7.     //some stuff
  8.   }
  9. }
  10.  
  11. class MiniZboub extends ParentZboub
  12. {
  13.   public function doZboub()
  14.   {
  15.     $this->zboub= 'machin';
  16.     parent::doZboub();
  17.   }
  18. }