Using classes in PHP

Class in PHP is very useful tool. Using classes is object-oriented part of php. Simple sample:
Create class.php and write this code there:

class myobject {

function f1 ($variable1,$variable2);
{
echo $variable1.’ – ‘.$variable2;
}

}

Then create index.php file and place this code there:

include(“class.php”);
mynewobject=new myobject();

$mynewobject->f1(‘Name’,’Surname’);

The resut will be such:

Name – Surname

Yeni yazı olanda xəbər tutmaq üçün

* indicates required

Bir cavab yazın

Sizin e-poçt ünvanınız dərc edilməyəcəkdir. Gərəkli sahələr * ilə işarələnmişdir