可以扩展其他类的接口吗?

时间:2016-05-20 15:42:46

标签: php oop inheritance interface

我在zend网站上找到了这个

interface ResultSetInterface extends \Traversable, \Countable
{
    public function initialize($dataSource);
    public function getFieldCount();
}

接口扩展类可能吗?和多重继承?因为我知道PHP不支持多重继承。 Click Here

任何人都可以清楚这一点。

1 个答案:

答案 0 :(得分:5)

来自文档https://secure.php.net/manual/en/language.oop5.interfaces.php

  

可以使用extends运算符将接口扩展为类。

他们只能扩展其他接口。