复制代码 代码如下:
<?php
class A {
function example() {
echo "I am the original function A::example().<br />/n";
}
}
class B extends A {
function example() {
echo "I am the redefined function B::example().<br />/n";
A::example();
}
}
// A 类没有对象,这将输出
// I am the original function A::example().<br />
A::example();
// 建立一个 B 类的对象
$b = new B;
// 这将输出
// I am the redefined function B::example().<br />
// I am the original function A::example().<br />
$b->example();
?>
新闻热点
疑难解答