Class Php

   class Staff
   {
      protected $name;
      protected $title;
      function __construct()
      {
         echo "

Staff constructor called!

";
      }
   }
   class Manager extends Staff
   {
      function __construct()
      {
         parent::__construct();
         echo "

Manager constructor called!

";
      }
   }
   $employee = new Manager();
?>