奇跡を目撃する時が来ました。ディレクトリ構造を自動的に生成します~これは TP によってもたらされる利便性です~それ以外の場合は、ネイティブの代わりにフレームワークを使用する必要があります~
オンライン ドキュメント: http://www. kancloud.cn/manual/thinkphp5/118021
デモには不便ですので、興味のある方は開発マニュアルをご覧ください〜
自動的に生成されたコードを追加します。ファイルを自動的に生成します。下の図を見てください: エントリファイルにカスタムディレクトリの紹介を自動的に生成する方法:
index.html:
// 定义demo模块的自动生成 (按照实际定义的文件名生成)
'demo' => [
'__file__' => ['common.php'],
'__dir__' => ['behavior', 'controller', 'model', 'view'],
'controller' => ['Index', 'Test', 'UserType'],
'model' => ['User', 'UserType'],
'view' => ['index/index'],
],
3. デフォルトのディレクトリ構造とファイルを自動的に生成します:
index.html:
// 定义index模块的自动生成 'index' => [ '__file__' => ['tags.php', 'user.php', 'hello.php'], '__dir__' => ['behavior', 'controller', 'model', 'view'], 'controller' => ['Index', 'Test', 'UserType'], 'model' => [], 'view' => ['index/index'], ], // 定义test模块的自动生成 'test'=>[ '__dir__' => ['behavior','controller','model','widget'], 'controller'=> ['Index','Test','UserType'], 'model' => ['User','UserType'], 'view' => ['index/index','index/test'], ],
このメソッドはビルドの操作を必要としないことに注意してください。 .php