interface Demo{
const NAME='tom';
public function test();
public function test1();
}
interface test extends Demo{ //接口对接口 只有扩展
function test2();
}
class Hello extends test{} // 报错 // 类对接口 有覆盖
abstract class Hello implements test{
} //不报错
interface Demo{
const NAME='tom';
public function test();
public function test1();
}
interface test extends Demo{ //接口对接口 只有扩展
function test2();
}
Class Word{
Function test5(){
}
}
class Hello extends Word implements test{
//可以使用接口
function test(){
}
function test1(){
}
//实现接口
function test2(){
}
//function test5(){
}
}
5.实现多个接口,只需使用逗号分开即可。
php 中一个类 只要一个父类 。
interface Demo{
const NAME='tom';
function test1();
}
interface Test extends Demo{
function test2();
}
class World{
function test3();
}
interface Abc{
function test6{}
}
class Hello extends World implements Test,Abc{
function test1(){
};
function test2(){
echo 11;
};
function test3(){
};
function test6(){
};
}
$re=new Hello;
$re->test2(); //输出 11