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
Post a Comment
If you Satisfied , Please Leave a comment