PHP OOPS

How to Create PHP CRUD using OOPS with MySQLi in MVC

Create an implementation of PHP CRUD using OOPS with MySQLi in MVC by following and downloading example project presented with this article. ...

January 24th, 2019

Overloading in PHP

We are going to see a surprise in this PHP tutorial. We all know about overloading and it is a basic concept in OOPS and we have beaten it e ...

October 1st, 2013

PHP Magic Methods

Generally, for each PHP user defined function, it contains two portions, such as function definition and function call. In some special case ...

September 20th, 2013

PHP Access Modifiers

PHP access modifiers are used to set access rights with PHP classes and their members which are the functions and variables defined within t ...

September 18th, 2013

PHP Constructors Destructors

While working with the PHP object model, we need to set the properties of that object, before using it as a reference to access class member ...

September 4th, 2013

PHP self Vs this

In PHP, the self and this keyword are used to refer to class members within the scope of a class. The class members can be either variables ...

August 28th, 2013

Use of PHP final

As like in other programming languages, like, like Java, the final keyword is added to PHP as of its version 5. This keyword is used as a mo ...

July 3rd, 2013

PHP Interfaces

In PHP, the interface blocks declare a set of functions to be defined with a class to implement this interface. A class can extend more than ...

June 28th, 2013

PHP Inheritance

Inheritance is one of the popularly used Object Oriented Programming features. It allows having shared properties and functions between rela ...

June 18th, 2013

OOPS Features Supported by PHP

PHP supports both procedural and Object-Oriented programming. Object-Oriented methodologies will be useful and effective while working with ...

April 24th, 2013

↑ Back to Top