interface

PHP|PHP的接口使用示例

举个Demo来说明接口的作用。有这么一个类。class DocumentStore{ protected $data = []; public function addDocument(Documentable $document) { $key = $document->getId(); $value = $document-