首頁 >php框架 >Workerman >Workerman中的註冊樹模式

Workerman中的註冊樹模式

尚
轉載
2019-12-27 17:26:392617瀏覽

Workerman中的註冊樹模式

註冊樹模式是把物件掛到一個類別的屬性陣列裡,下次直接在這個陣列裡面取,保持全域唯一,一般在專案入口初始化的時候有用。在workerman中一開始的就是個註冊樹模式的運用,下面是對他的模擬:

<?php
class Worker{

    protected static $_workers=array();
    public function __construct()
    {
        $this->workerId=spl_object_hash($this);
        static::$_workers[$this->workerId]=$this;
    }
    public static function runAll(){
        foreach (static::$_workers as $worker) {
            var_dump($worker);
        }
    }
}

new Worker();
new Worker();
Worker::runAll();

在Worker的建構子中,把目前new的物件掛到了Worker類別的靜態變數屬性陣列裡,在下次使用的時候直接在那個數組裡取

Workerman中的註冊樹模式

更多workerman知識請關注workerman教程欄。

以上是Workerman中的註冊樹模式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除