PHP中的接口
时间:2011-06-14 来源:编程小兵
<?php
interface demoInterface{ public function doIt();//声明方法 } class hello implements demoInterface{ public function doIt(){ echo "实现接口中的方法"; } } $demo=new hello(); $demo->doIt(); ?> 相关阅读 更多 +
时间:2011-06-14 来源:编程小兵
<?php
interface demoInterface{ public function doIt();//声明方法 } class hello implements demoInterface{ public function doIt(){ echo "实现接口中的方法"; } } $demo=new hello(); $demo->doIt(); ?>