摘要:在程式設計的過程中我們應該學會如何使用介面來給變我們的生活,極大的提升自我能力。介面不是新特性,但是非常重要,下面我們來擼個介面的小例子。 ...
虛構一個DocumentStore的類,這個類別負責從不同的資源收集文本。可以從遠端url讀取html,也可以讀取資源,也可以收集終端命令輸出。
定義DocumentStore類別
class DocumentStore{ protected $data = []; public function addDocument(Documenttable $document){ $key = $document->getId(); $value = $document->getContent(); $this->data[key] = $value; } public function getDocuments(){ return $this->data; } }
既然addDocument()方法的參數只能是Documenttable的類別的實例,這樣定義DocumentStore的類別怎麼行呢? 其實Documenttable不是類,是介面;
定義Documenttable
interface Documenttable{ public function getId(); public function getContent(); }
這個介面定義表名,實作Documenttable介面的任何物件都必須提供一個公開的getId()方法和一個公開的getContent()方法。
可是这么做有什么用呢?这么做的好处就是,我们可以分开定义获取稳定的类,而且能使用十分不同的方法。下面是一种实现方式,这种方式使用curl从远程url获取html。
定义HtmlDocument类
class HtmlDocument implements Documenttable{ protected $url; public function __construct($url) { $this->url = $url; } public function getId(){ return $this->url; } public function getContent(){ $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$this->url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,3); curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1); curl_setopt($ch,CURLOPT_MAXREDIRS,3); curl_close($ch); return $thml; } }
下面一个方法是获取流资源。
class StreamDocument implements Documenttable{ protected $resource; protected $buffer; public function __construct($resource,$buffer = 4096) { $this->resource=$resource; $this->buffer=$buffer; } public function getId(){ return 'resource-' .(int)$this->resource; } public function getContent(){ $streamContent = ''; rewind($this->resource); while (feof($this->resource) === false){ $streamContent .= fread($this->resource,$this->buffer); } return $streamContent; } }
下面一个类是获取终端命令行的执行结果。
class CommandOutDocument implements Documenttable{ protected $command; public function __construct($command) { $this->command=$command; } public function getId(){ return $this->command; } public function getContent(){ return shell_exec($this->command); } }
下面我们来演示一下借助上面的三个类来实现DocumentStore类。
$documentStore = new DocumentStore();//添加html文档$htmlDoc = new HtmlDocument('https:// www.i360.me'); $documentStore->addDocument($htmlDoc);//添加流文档$streamDOC = new StreamDocument(fopen('stream.txt','rb')); $documentStore->addDocument($streamDOC);//添加终端命令文档$cmdDoc = new CommandOutDocument('cat /etc/hosts'); $documentStore->addDocument($command); print_r($documentStore->getDocuments());die;
这里HtmlDocument,StreamDocument,CommandOutDocument这三个类没有任何共同点,只是实现了同一个接口。
以上是PHP介面的使用技巧的詳細內容。更多資訊請關注PHP中文網其他相關文章!