Accessing Attributes of Objects : Object Attribute « Class « PHP






Accessing Attributes of Objects

<?php
  class employee {
      var $emp_code;
      var $name;
      var $address;
      var $department;
      var $sex;
      var $date_of_birth;
      var $salary;
      }

  $dave = new employee;
  $dave->emp_code="8";
  $dave->name="Dave";
  $dave->address="Apartments 1";
  $dave->department="Adm Development";
  $dave->sex="Male";
  $dave->salary="70";
  $dave->date_of_birth="15-09-1977";

  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.Changing the Value of an Attribute within a Function