Is php polymorphic?
1. What is polymorphism?
Polymorphism actually means executing different methods according to different parameters.
2. Polymorphism in PHP
The concept of polymorphism is generally discussed in strongly typed languages, because strongly typed languages must declare parameters. Type, for example, the parameters of the open method of a flashlight object state that it can only be blue light, and cannot pass other lights. But you can use parent class rendering to make it polymorphic. For example, declare a parent class of light, let other colors of light inherit from this light parent class, declare its parameters as the parent class light, and then pass any subclass of light Either way, this is strongly typed polymorphism.
But PHP is a weakly typed dynamic language and does not detect parameter types. You can pass anything; but in the PHP5.3 version, you can declare parameters as certain objects; when declaring parameters as instantiated objects of a certain class , you have to use the parent class rendering method to make it polymorphic;
3. Understanding of PHP polymorphism
php is an object-oriented scripting language, and we all As you know, object-oriented languages have three major characteristics: encapsulation, inheritance, and polymorphism. PHP should have these three characteristics.
Encapsulation is the construction process of a class, which PHP has; PHP also has the feature of inheritance. Only this polymorphism is very vague in PHP. The reason is that php is a weakly typed language.
Java's polymorphism is very clear and can be roughly divided into two categories: parent class references point to subclass objects; interface references point to class objects that implement the interface. When declaring a variable in Java, you must set the type of the variable, so what parent class references and interface references exist. This is not reflected in PHP. When declaring a variable in PHP, you do not need to set a type for the variable. A variable can point to different data types. So, php does not have polymorphism like java.
php does not have clear polymorphism like java, it does not mean that php does not have polymorphism. Look at the following example:
abstract class animal{ abstract function fun(); } class cat extends animal{ function fun(){ echo "cat say miaomiao..."; } } class dog extends animal{ function fun(){ echo "dog say wangwang..."; } } function work($obj){ if($obj instanceof animal){ $obj -> fun(); }else{ echo "no function"; } } work(new dog()); work(new cat());
The above class is an abstract class, which also shows that interfaces and class objects that implement interfaces can also be applied.
Recommended tutorial: PHP video tutorial
The above is the detailed content of Is php polymorphic?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
