PHP接口使用
<?php
interface IEmployee
{
function working();
}
interface IDeveloper
{
function Coding();
}
class Person implements IEmployee,IDeveloper
{
function working()
{}
function Coding(){}
}
?>
浙公网安备 33010602011771号