Create Constructor In PHP Example


<?php // constructor Example 


class class1 // create class 


function class1(){ 

echo 'this is a simple constructor <br>' ; } // create constructor here 

function myname(){  // create function 



echo 'my name is Rajeev Dhar Dwivedi<br>' ;
}

function 
addvalue($a$b){  //  create function 

echo $a+$b;
}

};
?>
<?php

$a 
= new class1(); // create object here

$a->myname();   // call function here 
$a->addvalue(5,10); ?>
OUTPUT :
this is a simple constructor 
my name is Rajeev Dhar Dwivedi
15

Comments

Popular posts from this blog

Call PHP Function In JavaScript Using Ajax

List of Post Category Wise in wordpress

PHP Script for sending mail with attachment file