PHP5 OOPS Tutorials - Polymorphism
Posted on : 11-02-2008 | By : admin | In : PHP, PHP Class Examples, PHP5 OOPS Tutorials
7
If you're new here, you may want to subscribe to my Newsletter. Thanks for visiting!
In this tutorial we will learn the following:
- Meaning of Polymorphism
- Why method polymorphism cannot be achieved in PHP
- PHP 5 Object Polymorphism
Meaning of Polymorphism
Polymorphism is derived from two Greek words. Poly (meaning many) and morph (meaning forms). Polymorphism means many forms. In C you have two methods with the same name that have different function signatures and hence by passing the correct function signature you can invoke the correct method.
This is how polymorphism is achieved in languages like C where in a function sum(int, int) differs from sum(float, float). Therefore the method sum() has many forms depending on the parameters being passed to it.
The meaning with Object Oriented languages changes. With Object Oriented language polymorphism happens:
When the decision to invoke a function call is made by inspecting the object at runtime it is called Polymorphism
Why method polymorphism cannot be achieved
The reason why polymorphism for methods is not possible in PHP is because you can have a method that accepts two parameters and call it by passing three parameters. This is because PHP is not strict and contains methods like func_num_args() and func_get_arg() to find the number of arguments passed and get a particular parameter.
Because PHP is not type strict and allows variable arguments, this is why method polymorphism is not possible.
PHP 5 Polymorphism
Since PHP 5 introduces the concept of Type Hinting, polymorphism is possible with class methods. The basis of polymorphism is Inheritance and overridden methods.
Lets look at an example:
class BaseClass { public function myMethod() { echo "BaseClass method called"; } } class DerivedClass extends BaseClass { public function myMethod() { echo "DerivedClass method called"; } } function processClass(BaseClass $c) { $c->myMethod(); } $c = new DerivedClass(); processClass($c);
In the above example, object $c of class DerievedClass is executed and passed to the processClass() method. The parameter accepted in processClass() is that of BassClass. Within the processClass() the method myMethod() is being called. Since the method is being called on the class variable of BaseClass, it would not be wrong to assume that myMethod() of class BaseClass will be called. But, as per the definition “When the decision to invoke a function call is made by inspecting the object at runtime it is called Polymorphism”, myMethod() will be called on object DerievedClass. The reason why this happens is because the object of DerievedClass is being passed and hence the method myMethod() of DerievedClass will be called.
Please feel free to write back for any clarification.
Subscribe to my newsletter:
Related Posts on PHP5 Tutorial - Object Oriented Programming (OOPS)
- PHP5 Tutorial - Learn to create a PHP5 Class
- PHP5 Tutorial - Learn to Create a PHP5 Class Object
- PHP5 Tutorial - Defining Attributes of a PHP5 Class
- PHP5 Tutorial - Defining Methods of a PHP5 Class
- PHP5 Tutorial - Creating a PHP5 Constructor __construct()
- PHP5 Tutorial OOPS - Creating a PHP5 Destructor __destruct()
- PHP5 Tutorial OOPS - PHP5 Class Access Specifiers - public, private and protected
- PHP5 Tutorial - $this variable explained
- PHP5 Tutorial - instanceOf Operator Explained
- PHP5 Tutorial - Defining Class Constants
- PHP5 Tutorial - Inheritance
- PHP5 Tutorials - Abstract Class and Interface
- PHP5 Tutorial - Magic Methods - __toString() method
- PHP5 Tutorial - Magic Methods - __get() and __set()
- PHP5 Tutorial - Magic Methods - __isset() and __unset()
- PHP5 Tutorial - Magic Methods - __call() method
- PHP5 Tutorial - Magic Methods - __autoload() method
- PHP5 Tutorial - Magic Methods - __sleep() and __wakeup()
- PHP5 Tutorial - Magic Methods - __clone() method









[...] Original post by admin [...]
Hello,
Whatever explanation you provided is awesome but example is wrong. Above example is relevant to Overriding …
class Sample
{
public function createLine()
{
echo “########################”;
}
public function createLine($chr)
{
for ($g=0;$g<10;$g++)
echo $chr;
}
public function createLine($str,$intLength)
{
for($g=0;$g<$intLength;$g++)
echo $chr
}
}
In above example createLine is one of example of polymorphism.
Thanks
-Dipsolution
Changed processClass() as below,
function processClass(BaseClass $c) {
if($c instanceof BaseClass)
print(”Its Base class \n”);
else
print(” c \n”);
$c->myMethod();
}
As per your explanation it should print “Its Base class” but script output is
$ php test.php
Its Base class
DerivedClass method called
Strange object is still instance of base class but derived object’s method is called……. any explanation?
Ok, got the answer
Since DerivedClass derived from BaseClass, any object of DerivedClass is also aninstance of BaseClass.
Slight change in above function explains it
function processClass(BaseClass $c) {
if($c instanceof DerivedClass)
print(”Its derived class \n”);
else
print(” Its base class \n”);
$c->myMethod();
}
$ php test.php
Its derived class
DerivedClass method called
Mandrik Smith,
your example is wrong. were u able to run ur script? it gives error
Fatal error: Cannot redeclare Sample::createLine() in /home/sudhirp/test.php on line 8
Whatever author explans about polymorphism in php is correct.
Its really great to learn from you.its good for beginners..
thanks a lot..
Hi Sudhir,
Not able to get you… my example does not have a method createLine()?
Let me know if you need help with it.
Regards,
Suniil