Author name: admin

PHP

Final Keyword in PHP

Final Keyword in PHP : PHP 5 introduces the final keyword, which prevents child classes from overriding a method by […]

PHP

Static Keyword in PHP

Static Keyword in PHP : Declaring class members or methods as static makes them accessible without needing an instantiation of

PHP

Abstract Classes in PHP

Abstract Classes in PHP An abstract class is one that cannot be instantiated, only inherited. You declare an abstract class

PHP

Interfaces in PHP

Interfaces in PHP are defined to provide a common function names to the implementers. Different implementors can implement those interfaces

PHP

Overriding in PHP

Overriding in PHP: In the context of object oriented programming method overriding means to replace parent method in child class.In

PHP

Destructor in PHP

Destructor in PHP : PHP destructor allows you to clean up resources before PHP releases the object from the memory.

PHP

Data Abstraction in PHP

Data Abstraction in PHP Abstraction provides you a generalized view of your classes or object by providing relevant information. Abstraction

PHP

Encapsulation in PHP

Encapsulation in PHP is Wrapping up data member and method together into a single unit (i.e. Class) is called Encapsulation.

Scroll to Top