here is simple structure of class
<?php
class saddam
{
}
create object with the use of new word
<?php
class saddam
{
}
$sam=new saddam;
<?php
class saddam
{
public $var1="saddam";
public $var2="saifi";
}
$sam=new saddam;
use function and method in class
<?php
class saddam
{
public $var1="saddam";
public $var2="saifi";
function saifiji()
{
echo "hello world";
}
}
$sam=new saddam;
$sam->saifiji();
output:- hello world
Comments
Post a Comment