처음 두 개의 네임스페이스 블로그 게시물을 바탕으로 네임스페이스, 공용 공간 및 ThinkPHP5..0 간의 관계를 살펴보겠습니다.
먼저 인덱스 컨트롤러(controller)를 찾습니다.
applicationindexcontrollerIndex.php,
수정된 Index.php를 수정합니다:
<?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function index(){ return $this->fetch(); } }
그런 다음 수동으로 다음 2개의 폴더 보기를 생성합니다. index.html을 생성하고 인덱스 보기 제어를 위한 index.html을 생성합니다.
applicationindexviewindexindex.html,
생성된 index.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title>iwanghang </head> <body> </body> </html>
publicindex.php를 아무런 수정 없이 실행시키면 출력되는 결과는 iwanghang
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006-2016 http://www.php.cn/ All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.php.cn/ ) // +---------------------------------------------------------------------- // | Author: liu21st <liu21st@gmail.com> // +---------------------------------------------------------------------- // [ 应用入口文件 ] // 定义应用目录 define('APP_PATH', __DIR__ . '/../application/'); // 加载框架引导文件 require __DIR__ . '/../thinkphp/start.php';
위는 PHP 개발(33)-ThinkPHP5이다. 0 (5) 네임스페이스 및 TP5-PhpStorm 콘텐츠, 더 많은 관련 콘텐츠를 보려면 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!