PHP 5 Tutorial - __wakeup() Magic Method
This tutorial will guide you through the __wakeup() Magic Method. The __wakeup() magic method of PHP5 gets called when unserialize operation on object is performed. This method allows us to restore the serialized data to its normal form.
Bookmark It
Hide Sites
PHP 5 Tutorial - __sleep() Magic Method
This tutorial will guide you through the __sleep() Magic Method. The __sleep() magic method in PHP5 gets called while serializing an object in PHP5. Serializing is required to pass complex data across the network or PHP pages. It is also used to store data(files, database, cookies etc). With this magic method call we can define [...]
PHP 5 Tutorial - __call() Magic Method
This tutorial will guide you through the __call() Magic Method. The __call Magic method in PHP5 get called when accessing an undeclared or undefined methods of an class. With this magic method the programmer can keep track on the undeclared method which are not defined inside the class.
Bookmark It
Hide Sites
PHP 5 Tutorial - __get() Magic Method
This tutorial will guide you through the __get() Magic Method. The __get Magic method in PHP5 gets called when accessing the value of an undeclared or undefined attributes of an class. With this method the programmer can keep track on the variables which are not defined inside the class.
Bookmark It
Hide Sites
PHP 5 Tutorial - __set() Magic Method
This tutorial will guide you through the __set() Magic Method. The __set() Magic method in PHP5 gets called when setting the value to an undeclared or undefined attributes of an class. With this method the programmer can keep track on the variables which are not defined inside the class.
Bookmark It
Hide Sites
OOPS in PHP 5 Tutorial - Using Interface
This article will guide through the Interface Class in Object Oriented Programming. In simple words Interface is a class with no data members and contains only member functions and they lack its implementation. Any class that inherits from an interface must implement the missing member function body. Interfaces is also an abstract class because abstract [...]
OOPS in PHP 5 Tutorial - Static Keyword
This article will guide you on the static keyword used in PHP5. Unlike the methods and data members used in OOPS where the scope is decided by access specifiers, the static methods/attributes are available as a part of the class. So it is available to all the instance defined for the class. To implement static [...]
OOPS in PHP 5 Tutorial - Abstract Class
This article will guide you on the Abstract Class used in PHP5. Also it will give an insight on what abstract class is all about when we talk about Object Oriented Programming Concept.
What is an Abstract Class?
An abstract class defines the basic skeleton for the class. It contains attributes and members but some members are [...]
OOPS in PHP 5 Tutorial - Parent Keyword
This article will guide you through the PARENT keyword used in OOPS implementation in PHP5. Parent Keyword allows to forcefully call the parent method and not the child method. This is useful when you are implementing Polymorphism in PHP5. This keyword is also very useful if you want the derived class to call the parent [...]
OOPS in PHP 5 Tutorial - Function Overriding
This article will guide you through the Function Overriding which forms the common feature of OOPS. In Object Oriented Programming Function Overriding refers the base class and the child class methods with same name, signature and access specifier.
Bookmark It
Hide Sites



















