>  기사  >  php教程  >  Zend 프레임워크 튜토리얼: MVC 프레임워크의 컨트롤러 사용량 분석

Zend 프레임워크 튜토리얼: MVC 프레임워크의 컨트롤러 사용량 분석

高洛峰
高洛峰원래의
2017-01-05 11:13:421433검색

이 문서에서는 Zend Framework 튜토리얼의 MVC 프레임워크에서 Controller를 사용하는 방법을 설명합니다. 참고하실 수 있도록 모두와 공유해 주세요. 자세한 내용은 다음과 같습니다.

다음은 MVC 모델에서 Controller의 기본 사용에 대해 간략하게 소개합니다.

기본 사용 예:

root@coder-671T-M:/www/zf_demo1/application# tree.
├── Bootstrap.php
├── configs
│ └── application.ini
├── 컨트롤러
│ ├── ErrorController.php
│ └── IndexController.php
├── 모델
└── 보기
├── 도우미
└── 스크립트
├── 오류
│ └── error.phtml
└── index
└── index.phtml

IndexController.php

<?php
class IndexController extends Zend_Controller_Action
{
  public function init()
  {
    /* Initialize action controller here */
  }
  public function indexAction()
  {
    // action body
  }
}

규칙:

1. 일반적으로 컨트롤러는 /application/controllers 디렉터리에 저장됩니다. 응용 프로그램.
다음 방법으로 경로를 사용자 정의할 수 있습니다.

Zend_Controller_Front::run(&#39;/path/to/app/controllers&#39;);

또는 다음 방법으로 경로를 사용자 정의할 수 있습니다.

// Set the default controller directory:
$front->setControllerDirectory(&#39;../application/controllers&#39;);
// Set several module directories at once:
$front->setControllerDirectory(array(
  &#39;default&#39; => &#39;../application/controllers&#39;,
  &#39;blog&#39;  => &#39;../modules/blog/controllers&#39;,
  &#39;news&#39;  => &#39;../modules/news/controllers&#39;,
));
// Add a &#39;foo&#39; module directory:
$front->addControllerDirectory(&#39;../modules/foo/controllers&#39;, &#39;foo&#39;);

기본적으로 기본 디렉터리에 저장할 수 있습니다.

2. 파일명과 클래스명이 동일합니다
3. 클래스명은 Controller로 끝나며 Zend_Controller_Action을 상속받습니다
4. 클래스명의 첫 글자는 대문자로 표기하며 카멜 표기법을 따릅니다. 스타일. Profit NewsListControlle
4. 파일 이름은 Controller.php로 끝납니다
5. 컨트롤러 초기화는 init 메소드

public function init()
{
}

에서 완료할 수 있습니다.

이 글이 PHP 프로그래밍에 종사하는 모든 분들께 도움이 되기를 바랍니다.

Zend Framework 튜토리얼과 MVC 프레임워크 컨트롤러 사용 분석 관련 기사를 더 보려면 PHP 중국어 웹사이트를 주목하세요!

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