美文网首页
thinkphp 公共函数目录

thinkphp 公共函数目录

作者: 听取哇声一片_11c4 | 来源:发表于2019-01-14 17:32 被阅读0次

    有需要用到的公共函数,放到 common.php

    ├─application 应用目录(可设置)

    │  ├─common            公共模块目录(可选)

    │  ├─common.php        公共函数文件

    │  ├─route.php          路由配置文件

    │  ├─database.php      数据库配置文件

    │  ├─config.php        应用配置文件

    │  ├─module1            模块1目录

    │  │  ├─config.php      模块配置文件

    │  │  ├─common.php      模块函数文件

    │  │  ├─controller      控制器目录

    │  │  ├─model          模型目录(可选)

    │  │  ├─view            视图目录(可选)

    │  │  └─ ...            更多类库目录

    │  │

    │  ├─module2            模块2目录

    │  │  ├─config.php      模块配置文件

    │  │  ├─common.php      模块函数文件

    │  │  ├─controller      控制器目录

    │  │  ├─model          模型目录(可选)

    │  │  ├─view            视图目录(可选)

    │  │  └─ ...            更多类库目录

    相关文章

      网友评论

          本文标题:thinkphp 公共函数目录

          本文链接:https://www.haomeiwen.com/subject/coejdqtx.html