Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

get parent class name

Mon Oct 27, 2008 12:09 am

Code:

<?php
class Employee {
    
private $title;
    
private $lastName;
    
private $firstName;
    
protected $salary;
    
private $ratio = 0;
    
    
public function __construct($title, $firstName, $mainName, $salary ) {
        
$this->title     = $title;
        
$this->firstName = $firstName;
        
$this->lastName  = $mainName;
        
$this->salary     = $salary;
    }

    function
getSummaryLine() {
        
$base  = "$this->title ( $this->lastName, ";
        
$base .= "$this->firstName )";
        return
$base;
    }
}

class
Developer extends Employee {
    
private $stayYear = 0;

    
public function __construct($title, $firstName, $mainName, $salary, $stayYear ) {
        
parent::__construct($title, $firstName, $mainName, $salary );
        
$this->stayYear = $stayYear;
    }

    
public function getStayLength() {
        return
$this->stayYear;
    }

    function
getSummaryLine() {
        
$base = parent::getSummaryLine();
        
$base .= ": playing time - $this->stayYear";
        return
$base;
    }

}


print
get_parent_class( 'Developer' );

?>





Post a reply
  Related Posts  to : get parent class name
 inherit background color from the parent element     -  
 Define class helper class to check the method existance     -  
 java abstract class,concrete class and interface     -  
 relationship between the Canvas class and the Graphics class     -  
 inner class that is a member of an outer class?     -  
 Define class inside another class C++     -  
 load class to applet- load frame class to applet     -  
 PHP example for a class     -  
 PHP class example     -  
 what is a concrete class     -  

Topic Tags

PHP OOP