What is $this Variable Vs self?
$this is a pseudo-variable which is a reference to the current object. $this is mostly used in object oriented code. $this variable is used to call...
READ MORE$this is a pseudo-variable which is a reference to the current object. $this is mostly used in object oriented code. $this variable is used to call...
READ MOREStatic Methods and Properties in PHP with Example Static Methods and Properties is very useful feature in PHP and in this post i am going to tell you...
READ MOREInterface in PHP An Interface does not contain any functionality, it only specify set of methods which classes must implement.You can create inte...
READ MOREVisibility in PHP Classes :You are ever noticed that every method has their visibility in php.There are 3 types of visibility which is used in php for...
READ MOREMultilevel and Multiple Inheritance in PHP :PHP OOP does not allow multiple inheritance, it allow only multilevel inheritance.In simple word, subclass...
READ MOREInheritance in PHPInheritance is the php oops concept which is based around the concept of base classes or superclasses and derived classes or subclas...
READ MOREDestructor in PHP : Destructor in PHP is similar to other oops(object oriented programming) concept. PHP Destructor is handled by the Garbage Co...
READ MOREConstructor in PHP with example ?Constructor is a key part of PHP oops concept.Constructor in PHP is special type of function of a class which is auto...
READ MOREConcept of Encapsulation in PHP? Encapsulation is an OOP (Object Oriented Programming) concept in PHP. Wrapping some data in single unit is called En...
READ MOREConcept of Abstraction in PHP Concept of Abstraction in PHP is important php oop (object oriented programming) concept. To show the needed/relevant...
READ MORE© 2016 All Rights Reserved | Contact Us | Terms of use | Privacy Policy