Yii 무엇을 위한 행동인가요?
Yii 동작은 이벤트의 업그레이드된 버전입니다. 모든 동작은 동작의 하위 클래스입니다. 동작이 "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 Tutorial" "Yii Tutorial"
위 내용은 Yii의 행동은 무엇을 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!