PHP接口使用

<?php
interface IEmployee
   {
   		function working();
   }
   
   interface IDeveloper
   {
   		function Coding();
   }
   
   class Person implements IEmployee,IDeveloper
   {
   		function working()
   		{}
   		
   		function Coding(){}
   }
?>

 

posted @ 2014-01-03 22:20  玻璃鱼儿  阅读(127)  评论(0编辑  收藏  举报