首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

extends

Inheritance is a well-established programming principle, and PHP makes use of this principle in its object model. This principle will affect the way many classes and objects relate to one another.

For example, when you extend a class, the subclass inherits all of the public and protected methods from the parent class. Unless a class overrides those methods, they will retain their original functionality.

This is useful for defining and abstracting functionality, and permits the implementation of additional functionality in similar objects without the need to reimplement all of the shared functionality.

Note: Unless autoloading is used, then classes must be defined before they are used. If a class extends another, then the parent class must be declared before the child class structure. This rule applies to classes that inherit other classes and interfaces.

Example #1 Inheritance Example

代码语言:javascript
复制
<?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'

?>

← Visibility

Scope Resolution Operator (::) →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com