>백엔드 개발 >PHP 튜토리얼 >컨트롤러 코드 생성을 위한 컨트롤러 yii 프레임워크 소스 코드 분석

컨트롤러 코드 생성을 위한 컨트롤러 yii 프레임워크 소스 코드 분석

WBOY
WBOY원래의
2016-07-29 08:45:471261검색

Yii 프레임워크를 사용하는 URL 경로는 일반적으로 호스트 이름/?r=xxxx/xxxx/xxxx&sdfs=dsfdsf
보호된 디렉터리의 컨트롤러가 사용되는 경우도 있고, 모듈의 컨트롤러가 사용되는 경우도 있음을 알 수 있습니다. 어떻게 처리되나요? 다음 분석을 참조하세요.
다음 코드는 yii 프레임워크 핵심 코드 %Yiiroot%/framework/web/CWebApplication.php

코드 복사 코드는 다음과 같습니다.

========================= ================= ================================= ================= =======
//1.runController는 컨트롤러를 실행하는 메소드이고, $route는 $_GET['r']입니다.
공용 함수 runController($route)
{
/ /여기에서 createController를 호출하여 먼저 컨트롤러 인스턴스를 생성합니다. createController가 컨트롤러 선택의 핵심임을 알 수 있습니다
if(($ca =$this->createController($route))!==null)
{
list($controller,$actionID)=$ca
$oldC
$this->_c;
$controller->init();
$controller->run ($actionID)
$this->_c
}
else
throw new CHttpException( 404,Yii::t('yii','"{route} "요청을 해결할 수 없습니다.',
array('{route}'=>$route===''?$this-> ;defaultController:$route)))
}
===== ========================== ===================== ============================= ==============
//2. 다음으로 우리가 액세스하는 경로가 사이트/연락처
공용 함수 createController($route,$owner=null)라고 가정하고 createController를 분석합니다. )
{
//이 함수를 처음 입력할 때 $owner 매개변수가 비어 있습니다.
if($owner===null)
$owner=$this
/ /$route 매개변수에 /가 포함되어 있지 않으면 기본 컨트롤러를 사용합니다.
if(($route=trim( $route,'/'))==='')
$route=$owner- >defaultController;
$caseSensitive=$this->getUrlManager()->caseSensitive;
/ /다음 루프를 완전히 실행하려면 $route
$route 뒤에 /를 추가하세요. '/'
//$pos에 / 위치 저장
while(($pos= strpos($route,'/'))!==false)
{
// $id는 전반부, 즉 사이트
$id=substr($route,0,$pos))if(!preg_match('/^w $/',$id))
return null;
if(!$caseSensitive)
$id=strtolower($id)
/ /$route가 후반이 됩니다. 즉, contact
$route=(string) substr($route,$pos 1);
//컨트롤러 루트 디렉터리 또는 하위 디렉터리 접두사
if(!isset( $basePath)) // 첫 번째 세그먼트
{
//처음 항목, $owner가 비어 있습니다. 해당 멤버 변수가 없습니다
//처음 입력하지 않았거나 $owner에 값이 있습니다. 이 멤버 변수가 설정될 수 있습니다. CWebModule 클래스를 참조하세요.
if(isset($owner->controllerMap [$id]))
{
배열 반환(
Yii::createComponent($owner->controllerMap[$id ],$id,$owner===$this?null:$owner ),
$this->parseActionParams($route),
);
}
//통과할 수 있는 경우 getModule 메소드는 독립 모듈을 획득하고 createController를 다시 호출합니다. 사이트가 모듈 이름인 경우 protected/config/main.php 구성 파일을 참조하세요. 예를 들어 컨트롤러는 %webroot%/protected/module/site/controller/ ContactController.php
if(($ module=$owner->getModule($id))!==null)
return $this->createController($route,$module)
/ /controller 디렉터리:
// CWebApplication의 경우 config['basePath'](구성 파일 참조)./controller/에 해당합니다. 예를 들어 컨트롤러는 %webroot%/protected/controller/SiteController.php
/ /CModule의 하위 클래스에 대해 변경합니다. 하위 클래스가 있는 폴더./contoller/, 예를 들어 컨트롤러는 %webroot%/protected/module/site/controller/ContactController.php
$basePath=$owner-> 🎜>$c/';
$className=ucfirst($id).'컨트롤러';
$classFile=$basePath.DIRECTORY_SEPARATOR.$className.'.php'
//$classFile 존재하는 경우 위에서 얻은 컨트롤러 클래스 파일 경로를 기반으로 클래스 인스턴스를 생성합니다.
//존재하지 않는 경우 하위 디렉터리의 컨트롤러이며 계속해서 루프를 수행하여 최종 컨트롤러를 찾습니다. % webroot%/protected/controller/somedir/SiteController
if(is_file($classFile))
{
if(!class_exists($className,false))
require($classFile);
if(class_exists($className,false) && is_subclass_of($className,'CController'))
{
$id[0]=strtolower($id[0])
return 배열 (
new $className($controllerID.$id,$owner===$this?null:$owner),
$this->parseActionParams($route),
); }
return null;
$controllerID.=$id
$basePath.=DIRECTORY_SEPARATOR.$id;
}
} 


위 내용은 컨트롤러 측면을 포함하여 컨트롤러 프레임워크 소스 코드 분석 및 컨트롤러 코드 생성을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.