Loading

PHP

PHP - What is OOP?. The Complete PHP Developer Course 2023 [Videos].

From PHP5, you can also write PHP code in an object-oriented style. Object-Oriented programming is faster and easier to execute.

PHP What is OOP?

OOP stands for Object-Oriented Programming.

Procedural programming is about writing procedures or functions that perform operations on the data, while object-oriented programming is about creating objects that contain both data and functions.

Object-oriented programming has several advantages over procedural programming:

  • OOP is faster and easier to execute
  • OOP provides a clear structure for the programs
  • OOP helps to keep the PHP code DRY "Dont Repeat Yourself", and makes the code easier to maintain, modify and debug
  • OOP makes it possible to create full reusable applications with less code and shorter development time

Tip: The "Dont Repeat Yourself" (DRY) principle is about reducing the repetition of code. You should extract out the codes that are common for the application, and place them at a single place and reuse them instead of repeating it.


PHP - What are Classes and Objects?

Classes and objects are the two main aspects of object-oriented programming.

Look at the following illustration to see the difference between class and objects:

class

Fruit

objects

Apple

Banana

Mango

Another example:

class

Car

objects

Volvo

Audi

Toyota

So, a class is a template for objects, and an object is an instance of a class.

When the individual objects are created, they inherit all the properties and behaviors from the class, but each object will have different values for the properties.

Look at the next chapters to learn more about OOP.


See All

Comments (185 Comments)

Submit Your Comment

See All Posts

Related Posts

PHP / Youtube

How we can create website on wamp server 3.0?

The A in WAMP stands for Apache. Apache is server software that is used to serve webpages. Whenever someone types in your WordPress websites URL, Apache is the software that serves your WordPress site. The M in WAMP stands for MySQL. MySQL is a database management system.
27-dec-2020 /6 /185

PHP / Youtube

What is wamp server 3.0 ? What is Appache Server? How we can develop site in wamp server?

PHP is a server-side programming language. HTML is a client-side scripting language. PHP is used in backend development, which interacts with databases to retrieve, store, and modify the information. HTML is used in frontend development, which organizes the content of the website.
10-Feb-2021 /6 /185

PHP / Youtube

How we can develop basic site in php with html?

PHP is a server-side programming language. HTML is a client-side scripting language. PHP is used in backend development, which interacts with databases to retrieve, store, and modify the information. HTML is used in frontend development, which organizes the content of the website.
9-Feb-2021 /6 /185