PHP tutorial- class constructor

OOP in PHP



Class constructor


You can initialize the data members of an object when it is created by using the constructor method. The name of constructor is the same as the name of the class.

Example:
<?php

class Employee
{
//data member
var $emp_id="";
var $emp_name="";
var $emp_sex="";
var $emp_salary="";

//constructor with parameters
Function Employee($id,$name,$sex,$salary){
$this->emp_id=$id;
$this->emp_name=$name;
$this->emp_sex=$sex;
$this->emp_salary=$salary;
}

//method members
function setName($name){
$this->emp_name=$name;
}
function getName(){
return $this->emp_name;

}
}

$emp=new Employee("e001","Dara Chan","Male",1500);//create object and initialize data members
echo "ID:".$emp->emp_id."<br>";
echo "Name:".$emp->getName();//access method member



?>



comment

Posted comments

san:

It is easy to follow PHP lessons.

03-15-2013

ukilik:

Thank u for useful web tips...

11-15-2012

maxxsaiyan123:

sap.net is so more comfortable for networking process in LAN .........
-----------------
MAURYA SOFTWARE
[url="http://mauryasoft.in] MAURYA SOFTWARE [/url]

10-29-2012

dano:

Good javascript tutorial
Thank

10-26-2012


...........................................................................................................Home | Forum | About | Contact
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word.
However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.
Copyright @ 2011-2013 worldbestlearningcenter. All Rights Reserved.
Computer-Wbest
Web Scripts Tips
Download
Related Posts