TP5 build.php自动生成模块

提示:

  • 需要复制 build.php 文件到 application 目录,并对该文件进行修改,举例如下:

return [
    // 生成应用公共文件
    '__file__' => ['common.php', 'config.php', 'database.php'],
    // 其他更多的模块定义
    'common' => [
        '__dir__' => ['model','view','controller'],
        'model' => ['index'],
    ],
    'admin' => [
        '__dir__' => ['model','view','controller'],
        'model' => ['test'],
        'view' => ['index/index','order/index'],
    ]
];
   
   
   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

第一种方法

  • 配置 PHP 环境变量
    可参考百度经验PHP环境变量配置

  • 运行命令 php think build
    以 windows 平台为例,定位到自己的项目根目录下,例如我的项目名称为 tp5Pro ,则执行如下命令:

D:\wamp\www\tp5Pro>php think build
Successed 
默认会读取应用目录application下面的build.php 作为自动生成的定义文件,如果你的定义文件位置不同,
则需要使用--config参数指定如下:

>php think build --config build.php
表示读取根目录下的build.php文件。

生成模块指令

>php think build --module test
表示自动生成test模块
   
   
   
   
  • 1
  • 2

第二种方法

在项目可访问的方法中,执行如下代码:

$build = include APP_PATH.'build.php';
\think\Build::run($build);
   
   
   
   
  • 1
  • 2

提示:

  • 测试发现,如果在入口文件中执行上述代码,总会报错“无法找到 Build 类”.
  • 建议可在其它 模块下的Controller中执行上述代码,例如本人是补充到 ..\application\index\controller\Index.php 中的 index() 方法.
  • 浏览器访问对应方法即可.

执行效果

经过上述两种方法的执行后,在项目的 application 目录下会自动生成对应的模块,参考如图:

你可能感兴趣的:(PHP)