Yii의 행동은 무엇을 합니까?

Guanhui
풀어 주다: 2020-06-10 15:54:30
원래의
2820명이 탐색했습니다.

Yii의 행동은 무엇을 합니까?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
yii
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿