锟斤拷锟斤拷涌锟�

使锟矫接口o拷interface锟斤拷锟斤拷锟斤拷锟斤拷指锟斤拷某锟斤拷锟斤拷锟斤拷锟绞碉拷锟斤拷锟叫╋拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟揭拷锟斤拷锟斤拷锟叫╋拷锟斤拷锟斤拷木锟斤拷锟斤拷锟斤拷荨锟�

锟接匡拷锟斤拷通锟斤拷 interface 锟截硷拷锟斤拷锟斤拷锟斤拷锟斤拷模锟斤拷锟斤拷锟斤拷锟揭伙拷锟斤拷锟阶硷拷锟斤拷锟揭伙拷锟斤拷锟斤拷锟斤拷锟斤拷卸锟斤拷锟斤拷锟斤拷械姆锟斤拷锟斤拷锟斤拷强盏摹锟�

锟接匡拷锟叫讹拷锟斤拷锟斤拷锟斤拷蟹锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷枪锟斤拷校锟斤拷锟斤拷墙涌诘锟斤拷锟斤拷浴锟�

实锟街o拷implements锟斤拷

要实锟斤拷一锟斤拷锟接口o拷使锟斤拷 implements 锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟叫憋拷锟斤拷实锟街接匡拷锟叫讹拷锟斤拷锟斤拷锟斤拷蟹锟斤拷锟斤拷锟斤拷锟斤拷锟结报一锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟绞碉拷侄锟斤拷锟接口o拷锟矫讹拷锟斤拷锟斤拷锟街革拷锟斤拷锟斤拷涌诘锟斤拷锟斤拷啤锟�

Note:

实锟街讹拷锟斤拷涌锟绞憋拷锟斤拷涌锟斤拷械姆锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟�

Note:

锟接匡拷也锟斤拷锟皆继承o拷通锟斤拷使锟斤拷 extends 锟斤拷锟斤拷锟斤拷锟斤拷

Note:

锟斤拷要实锟街接口o拷锟斤拷锟斤拷使锟矫和接匡拷锟斤拷锟斤拷锟斤拷锟斤拷姆锟斤拷锟斤拷锟饺伙拷碌姆锟绞斤拷锟斤拷锟斤拷锟结导锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷

锟斤拷锟斤拷

锟接匡拷锟斤拷也锟斤拷锟皆讹拷锟藉常锟斤拷锟斤拷锟接口筹拷锟斤拷锟斤拷锟洁常锟斤拷锟斤拷使锟斤拷锟斤拷全锟斤拷同锟斤拷锟斤拷锟角诧拷锟杰憋拷锟斤拷锟斤拷锟斤拷咏涌锟斤拷锟斤拷锟斤拷恰锟�

锟斤拷锟斤拷

Example #1 锟接匡拷示锟斤拷

<?php

// 锟斤拷锟斤拷一锟斤拷'iTemplate'锟接匡拷
interface iTemplate
{
    public function 
setVariable($name$var);
    public function 
getHtml($template);
}


// 实锟街接匡拷
// 锟斤拷锟斤拷锟叫达拷锟斤拷锟斤拷锟饺凤拷锟�
class Template implements iTemplate
{
    private 
$vars = array();
  
    public function 
setVariable($name$var)
    {
        
$this->vars[$name] = $var;
    }
  
    public function 
getHtml($template)
    {
        foreach(
$this->vars as $name => $value) {
            
$template str_replace('{' $name '}'$value$template);
        }
 
        return 
$template;
    }
}

// 锟斤拷锟斤拷锟叫达拷锟斤拷谴锟斤拷锟侥o拷锟结报锟斤拷锟斤拷为没锟斤拷实锟斤拷 getHtml()锟斤拷
// Fatal error: Class BadTemplate contains 1 abstract methods
// and must therefore be declared abstract (iTemplate::getHtml)
class BadTemplate implements iTemplate
{
    private 
$vars = array();
  
    public function 
setVariable($name$var)
    {
        
$this->vars[$name] = $var;
    }
}
?>

Example #2 锟斤拷锟斤拷锟斤拷慕涌锟�

<?php
interface a
{
    public function 
foo();
}

interface 
extends a
{
    public function 
baz(Baz $baz);
}

// 锟斤拷确写锟斤拷
class implements b
{
    public function 
foo()
    {
    }

    public function 
baz(Baz $baz)
    {
    }
}

// 锟斤拷锟斤拷写锟斤拷锟结导锟斤拷一锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷
class implements b
{
    public function 
foo()
    {
    }

    public function 
baz(Foo $foo)
    {
    }
}
?>

Example #3 锟教承讹拷锟斤拷涌锟�

<?php
interface a
{
    public function 
foo();
}

interface 
b
{
    public function 
bar();
}

interface 
extends ab
{
    public function 
baz();
}

class 
implements c
{
    public function 
foo()
    {
    }

    public function 
bar()
    {
    }

    public function 
baz()
    {
    }
}
?>

Example #4 使锟矫接口筹拷锟斤拷

<?php
interface a
{
    const 
'Interface constant';
}

// 锟斤拷锟斤拷涌诔锟斤拷锟�
echo a::b;

// 锟斤拷锟斤拷写锟斤拷锟斤拷锟斤拷为锟斤拷锟斤拷锟斤拷锟杰憋拷锟斤拷锟角★拷锟接口筹拷锟斤拷锟侥革拷锟斤拷锟斤拷喑o拷锟斤拷锟揭伙拷锟斤拷摹锟�
class implements a
{
    const 
'Class constant';
}
?>

锟接口硷拷锟斤拷锟斤拷锟斤拷约锟斤拷锟斤拷锟结供锟斤拷一锟街很好的凤拷式锟斤拷确锟斤拷某锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟侥承╋拷锟斤拷锟斤拷锟斤拷渭锟� instanceof 锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷约锟斤拷锟斤拷