Define Constructor for Class : Constructor « Class « PHP






Define Constructor for Class


 <?php
  class employee {
      var $emp_code;
      var $name;
      var $address;
      var $department;
      var $sex;
      var $date_of_birth;
      var $salary;
      
      function employee($empname) {
         $this->emp_code="default value";
         $this->name=$empname;
         $this->address="default value";
         $this->department="default value";
         $this->sex="default value";
         $this->date_of_birth="default value";
         $this->salary="default value";
      }
    }
  $dave = new employee("Dave Osbourne");
  echo "Employee Code:",$dave->emp_code," \n";
  echo "Name:",$dave->name," \n";
  echo "Address:",$dave->address," \n";
  echo "Department:",$dave->department," \n";
  echo "Sex:",$dave->sex," \n";
  echo "Salary:",$dave->salary," \n";
  echo "Date of Birth:",$dave->date_of_birth," \n";
  ?>
           
       








Related examples in the same category

1.Instantiate class by calling the constructor
2.Define and use constructor
3.Define class as constructor parameter
4.A Class with a Constructor
5.Adding a Constructor to PriceItem
6.Calling the constructor of the parent class
7.Constructors and Destructors
8.Defining an object constructor
9.Creating the Cat constructor
10.Defining object constructors in PHP 4
11.Using the PHP 5 style constructor
12.invoking parent constructors
13.Using Unified Constructors and Destructors
14.Using Default Constructors