php中如何写接口
答案:3 悬赏:70 手机版
解决时间 2021-04-25 01:36
- 提问者网友:流星是天使的眼泪
- 2021-04-24 10:18
写个接口,如何写,interface,
最佳答案
- 五星知识达人网友:旧脸谱
- 2021-04-24 10:47
public interface I_xxx extends I_xxx{
public xxx getxxx(String xxx);
}
全部回答
- 1楼网友:鱼忧
- 2021-04-24 13:14
<?php interface A{ function fun(); }
class B implements A { function fun(){ echo "Hello World!"; } }
function run(A $s){ $s->fun(); } run(new B);
- 2楼网友:神也偏爱
- 2021-04-24 11:47
//定义一个接口
interface inter {
public function test();
}
//定义一个类,继承接口
class example implements inter {
//实现接口里的方法
function test() {
echo '实现方法!';
}
}
//实例化类
$exa = new example();
//调用test()方法
$exa -> test();
楼主可以复制过去直接运行了,不懂可以追问我!
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯