MOTOSHARE 🚗🏍️

Rent Bikes & Cars Directly from Owners

Motoshare connects vehicle owners with people who need bikes and cars on rent. Owners earn from idle vehicles, and renters get flexible ride options.

Visit Motoshare

Introduction to PHP OOP

php

What is PHP?

  • PHP stands for hypertext preprocessor.
  • It is widely used in backend programming language.
  • PHP programming patterns are procedural/core php and object oriented.
  • Lots of framework are use like laravel, CakePHP, Yii, Zend, Codeigniter etc.
  • Code more modular and reusable.
  • Well organised code.
  • Easier to debug.
  • Best for large website projects.

Why is it so popular ?

  • Code reusable
  • Easier to debug
  • Best for medium and large website project
  • Backend programming use
  • Code more modular
  • Understanding code easier

What are class and object ?

  • Class are the blueprint of object ; Object use blueprint to build their project or functions.
  • Class example :- blueprint of house ; Object example :- built house.
  • Class function one ; Object function are lots that are related to class function.
  • If there is a function which is written in object but not written in class then that function will not work.

What is properties and methods ?

properties like :-

$a;
$b;
$c;
$d;

Methods like :-

sum(){
$c=$a+$b;
return $c;
}

Example of PHP :-

vikashdev k
Latest posts by vikashdev k (see all)
0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
0
Would love your thoughts, please comment.x
()
x