PHP Object Oriented Programming Part-11: PHP Object Serializing What is Object Serializing and unserializing in PHP OOP? When developing various PHP based projects see page – Palm...
PHP Object Oriented Programming Part-10: PHP OOP Overloading What is PHP OOP Overloading? From outside of the class, according to class user demand, automatically creating any property...
PHP Object Oriented Programming Part-9: PHP Object Interfaces What is Interfaces in Object Oriented Programming? The concept of the interface in Object Oriented Programming is much like...
PHP Object Oriented Programming Part-8: Abstract Class and Methods What is Abstract Class in PHP? Abstract Class in PHP is a special class from which an object can...
PHP Object Oriented Programming Part-7: Static Method, Properties and Late Static Binding What is Static Method and Property? It we want to access any method and property of a class without...
PHP Object Oriented Programming Part-6: PHP OOP Inheritance What is Inheritance In Object Oriented Programming, the process of sharing some methods and properties from one class to...
PHP Object Oriented Programming Part-5: Visibility or Access Modifier in PHP What is Visibility or Access modifier in PHP? Accessibility of any property, constant or method is determined by visibility....
PHP Object Oriented Programming Part-4: Constructor Method and Destructor Methods What is the Constructor Method in PHP? The method that automatically executes the first time when creating a new...
PHP Object Oriented Programming Part-3: PHP OOP Method Chaining What is Method Chaining in PHP? When many methods are called in a single instruction, in PHP’s term it...
PHP Object Oriented Programming Part-2: Making and Using Class, Object and Class Members What is the rule of declaration a class in PHP? In PHP, it is required to start a class...
PHP Object Oriented Programming Part I: PHP OOP Basics Introduction to Object Oriented Programming: To understand object oriented programming, we first need to know what is object? And...
Multiple Inheritance in PHP using Traits Introduction Trait is the new concept introduced in PHP 5.4. Which remove the limitation of the multiple inheritance...