tp5模块创建方法

1.自动生成模块

①在build.php中更改demo名称,即要生成模块的名称

'demo'     => [
        '__file__'   => ['common.php'],
        '__dir__'    => ['behavior', 'controller', 'model', 'view'],
        'controller' => ['Index', 'Test', 'UserType'],
        'model'      => ['User', 'UserType'],
        'view'       => ['index/index'],
    ]

②在public目录下的index.php中添加

//读取自动生成定义文件

$build = include '../build.php';
// 运行自动生成
\think\Build::run($build);

2.使用默认目录生成模块,在public目录下的index.php中添加

\think\Build::module('模块名');

访问http://localhost/thinkphp/public/或http://localhost/thinkphp/public/index.php/模块名/index/index

你可能感兴趣的:(php,tp5)