Abstraction in PHP

Advertisements

Access Specifiers in PHP Encapsulation in PHP

Abstraction in PHP

Data Abstraction is the most important features of any oop's programming language, It show only useful information remaining are hide for end user. Any representation of data in which the implementation details are hidden (abstracted).

Example of Abstraction in PHP

<?php

abstract class Animal
{
    public $name;
    public $age;
    
    public function Describe()
    {
        return $this->name . ", " . $this->age . " years old";    
    }
    
    abstract public function Greet();
}

class Dog extends Animal
{
    public function Greet()
    {
        return "Woof!";    
    }
    
    public function Describe()
    {
        return parent::Describe() . ", and I'm a dog!";    
    }
}

$animal = new Dog();
$animal->name = "Seru";
$animal->age = 5;
echo $animal->Describe();
echo $animal->Greet();

?>

Output

Seru, 5 years old, and I'm a dog!Woof!

Access Specifiers in PHP Encapsulation in PHP

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements