ホームページ >バックエンド開発 >PHPチュートリアル >PHP 開発(33) - ThinkPHP5.0(5) 名前空間と TP5 - PhpStorm
最初の 2 つの名前空間ブログ投稿に基づいて、名前空間、パブリック スペース、および ThinkPHP5..0 の関係を見てみましょう:
まず、インデックス コントローラー
を見つけます。 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 を作成します。インデックス ビューの制御、
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 中国語 Web サイト (www.php.cn) に注目してください。