Examples of PHP inheritance

Source: Internet
Author: User

Inheritance will affect the relationship between classes and classes, objects and objects.

For example, when you extend a class, subclasses inherit all the public and protected methods of the parent class. However, the methods of the subclass override the methods of the parent class.

Inheritance is very useful for the design and abstraction of features, and adding new functionality to similar objects eliminates the need to re-write these common features.

Inheritance code example

<?php

Class Foo
{
Public Function Printitem ($string)
{
Echo ' Foo: '. $string. Php_eol;
}

Public Function printphp ()
{
Echo ' PHP is great. Php_eol;
}
}

Class Bar extends Foo
{
Public Function Printitem ($string)
{
Echo ' Bar: '. $string. Php_eol;
}
}

$foo = new Foo ();
$bar = new Bar ();
$foo->printitem (' Baz '); Output: ' Foo:baz '
$foo->printphp (); Output: ' PHP is great '
$bar->printitem (' Baz '); Output: ' Bar:baz '
$bar->printphp (); Output: ' PHP is great '

?>

Examples of PHP inheritance

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.