首頁  >  文章  >  php框架  >  Yii 行為是做什麼的?

Yii 行為是做什麼的?

Guanhui
Guanhui原創
2020-06-10 15:54:302804瀏覽

Yii 行為是做什麼的?

Yii 行為是做什麼的?

Yii行為是事件的升級版,所有的行為都是Behavior的子類,其作用是將相似事件句柄放在一起,在行為執行“attach()”方法的時候會將「events()」方法中傳回的事件句柄進行綁定,這樣做達到方面管理和擴充的目的。

範例程式碼

/**
* Raised right BEFORE the application processes the request.
* @param CEvent $event the event parameter
*/
public function onBeginRequest($event)
{
  $this->raiseEvent('onBeginRequest',$event);
}
/**
* Runs the application.
* This method loads static application components. Derived classes usually overrides this
* method to do more application-specific tasks.
* Remember to call the parent implementation so that static application components are loaded.
*/
public function run()
{
  if($this->hasEventHandler('onBeginRequest'))
    $this->onBeginRequest(new CEvent($this));
  $this->processRequest();
  if($this->hasEventHandler('onEndRequest'))
    $this->onEndRequest(new CEvent($this));
}


推薦教學:《PHP教程》《Yii教程

以上是Yii 行為是做什麼的?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn