Mega Code Archive

 
Categories / Php / Class
 

Define an Executive class that inherits Employee

<?php    class Employee {       private $name;       function setName($name) {          if ($name == "") echo "Name cannot be blank!";          else $this->name = $name;       }       function getName() {          return "My name is ".$this->name."<br />";       }    }    class Executive extends Employee {       function pillageCompany() {          echo "I'm selling company assets to finance my yacht!";       }    }    $exec = new Executive();    $exec->setName("R");    echo $exec->getName();    $exec->pillageCompany(); ?>