91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中Collection類怎么用

發布時間:2021-10-12 13:58:38 來源:億速云 閱讀:289 作者:小新 欄目:開發技術

這篇文章主要介紹PHP中Collection類怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

用.net開發已經很多年了,最近接觸到php,發現php也很好玩。不過發現它里面沒有集合Collection類,只有數組,并且數組很強。這里我用數組來包裝成一個集合Collection,代碼如下:


class Collection{
    private $_members=array();

    public  function addItem($obj,$key=null)
    {
        if($key)
        {
            if(isset($this->_members[$key]))
            {
                throw  new exception("Key \"$key\" already in use!");
            }
            else
            {
                $this->_members[$key]=$obj;
            }
        }
        else
        {
            $this->_members[]=$obj;
        }
    }

    public function removeItem($key)
    {
        if(isset($this->_members[$key]))
        {
            unset($this->_members[$key]);
        }
        else
        {
            throw new exception("Invalid Key \"$key\"!");
        }
    }
    public function getItem($key)
    {
        if(isset($this->_members[$key]))
        {
            return $this->_members[$key];
        }
        else
        {
            throw new  exception("Invalid Key \"$key\"!");
        }
    }

    public function Keys()
    {
        return array_keys($this->_members);
    }

    public function legth()
    {
        return sizeof($this->_members);
    }

    public function exists($key)
    {
        return (isset($this->_members[$key]));
    }
}


現在我們來測試一下這個集合是否好用。
我們首先建立一個集合元素類Course:

復制代碼 代碼如下:


class  Course
{
    private $_id;
    private $_courseCode;
    private $_name;

  public function __construct($id,$courseCode,$name)
    {
        $this->_id=$id;
        $this->_courseCode=$courseCode;
        $this->_name=$name;
    }

    public function getName()
    {
        return $this->_name;
    }

    public function getID()
    {
        return $this->_id;
    }

    public function getCourseCode()
    {
        return $this->_courseCode;
    }

    public function __toString()
    {
        return $this->_name;
    }
}


測試代碼如下:
$courses=new Collection();
$courses->addItem(new Course(1, "001", "語文"),1);
$courses->addItem(new Course(2, "002", "數學"),2);
$obj=$courses->getItem(1);
print $obj;
我想這個集合類應該可以滿足我們平日開發的需求了吧。
可是我們現在。net里面有個對象延遲加載,舉個例子來說吧,假如現在有Student這個對象,它應該有很多Course,但是我們希望在訪問Course之前Course是不會加載的。也就是說在實例化Student的時候Course個數為0,當我們需要Course的時候它才真正從數據庫讀取相應數據。就是需要我們把Collection做成惰性實例化。
修改后的Collection代碼如下:

復制代碼 代碼如下:


class Collection {
  private $_members = array();    //collection members
  private $_onload;               //holder for callback function
  private $_isLoaded = false;     //flag that indicates whether the callback
                                  //has been invoked
  public function addItem($obj, $key = null) {
    $this->_checkCallback();      //_checkCallback is defined a little later

    if($key) {
      if(isset($this->_members[$key])) {
        throw new KeyInUseException("Key \"$key\" already in use!");
      } else {
        $this->_members[$key] = $obj;
      }
    } else {
      $this->_members[] = $obj;
    }
  }
  public function removeItem($key) {
    $this->_checkCallback();

    if(isset($this->_members[$key])) {
      unset($this->_members[$key]);
    } else {
      throw new KeyInvalidException("Invalid key \"$key\"!");
    } 
  }

  public function getItem($key) {
    $this->_checkCallback();

    if(isset($this->_members[$key])) {
      return $this->_members[$key];
    } else {
      throw new KeyInvalidException("Invalid key \"$key\"!");
    }
  }
  public function keys() {
    $this->_checkCallback();
    return array_keys($this->_members);
  }
  public function length() {
    $this->_checkCallback();
    return sizeof($this->_members);
  }
  public function exists($key) {
    $this->_checkCallback();
    return (isset($this->_members[$key]));
  }
  /**
   * Use this method to define a function to be
   * invoked prior to accessing the collection. 
   * The function should take a collection as a
   * its sole parameter.
   */
  public function setLoadCallback($functionName, $objOrClass = null) {
    if($objOrClass) {
      $callback = array($objOrClass, $functionName);
    } else {
      $callback = $functionName;
    }

    //make sure the function/method is valid
    if(!is_callable($callback, false, $callableName)) {
      throw new Exception("$callableName is not callable " .
                          "as a parameter to onload");
      return false;
    }

    $this->_onload = $callback;
  }

  /**
   * Check to see if a callback has been defined and if so,
   * whether or not it has already been called.  If not,
   * invoke the callback function.
   */
  private function _checkCallback() {
    if(isset($this->_onload) && !$this->_isLoaded) {
      $this->_isLoaded = true;
      call_user_func($this->_onload, $this);
    }
  }
}


所需的Student如下:

復制代碼 代碼如下:


class CourseCollection extends Collection {
 public function addItem(Course $obj,$key=null) {
        parent::addItem($obj,$key);
    }
}
class Student{
    private $_id;
    private $_name;
    public $course;

    public  function __construct($id,$name)
    {
        $this->_id=$id;
        $this->_name=$name;
        $this->course=new CourseCollection();
        $this->course->setLoadCallback('loadCourses',$this);
    }

    public function getName()
    {
        return $this->_name;
    }

    public function getID()
    {
        return $this->_id;
    }

    public function __toString()
    {
        return $this->_name;
    }
    public function loadCourses(Collection $col)
    {
        $col->addItem(new Course(1, "001", "語文"),1);
        $col->addItem(new Course(2, "002", "數學"),2);
    }
}


調用代碼如下:
$student=new Student(1, "majiang");
print $student->getName();
print $student->course->getItem(1);

以上是“PHP中Collection類怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绍兴县| 藁城市| 三门峡市| 紫金县| 南和县| 苏尼特左旗| 自治县| 中西区| 华坪县| 云浮市| 蒙自县| 吉木乃县| 正定县| 隆化县| 曲松县| 罗山县| 依安县| 台东市| 沈丘县| 永昌县| 马山县| 和田县| 莆田市| 富源县| 新昌县| 鄄城县| 改则县| 平遥县| 搜索| 宝丰县| 临澧县| 苍溪县| 习水县| 平武县| 沅江市| 利津县| 扬州市| 康平县| 龙南县| 溧阳市| 晋城|