多模块
在 thinkphp 3.2.3 中,默认的应用目录是 ./application,下面的默认模块是 home 模块,如果此时需要添加一个 admin 模块用于后台应用,在默认的入口文件 ./index.php 中添加:
// 绑定admin模块到当前入口文件 define('bind_module','admin');
此时运行 http://servernmae/index.php,会在 ./application 目录下生成一个 admin 模块。但是此时访问 http://servername/index.php,实际上访问的是新添加的 admin 模块,即使在 ./applicaition/common/conf/config.php 中添加
//设置默认模块 'default_module' => 'home'
也无法正确定位到 home 模块。
实际上手册中提到到的在入口文件定义 bind_module 的实际含义是定义默认模块。参见:./thinkphp/library/think/dispatcher.calss.php,该文件定义了 thinkphp 内置的 dispatcher 类,用于完成 url 解析、路由和调度(参见手册中的 ”系统流程“ 一节),其中 line:140
// 获取模块名称 define('module_name', defined('bind_module')? bind_module : self::getmodule($varmodule));
在静态方法 dispatch 中,模块名称的获取首先会在入口文件中查询是否有定义 bind_module,如果有定义,则定义 module_name 的值为定义的 bind_module 的值,否则调用该类中的静态私有方法 getmodule 来获取实际的模块名称:
/** * 获得实际的模块名称 */ static private function getmodule($var) { $module = (!empty($_get[$var])?$_get[$var]:c('default_module')); unset($_get[$var]); if($maps = c('url_module_map')) { if(isset($maps[strtolower($module)])) { // 记录当前别名 define('module_alias',strtolower($module)); // 获取实际的模块名 return ucfirst($maps[module_alias]); }elseif(array_search(strtolower($module),$maps)){ // 禁止访问原始模块 return ''; } } return strip_tags(ucfirst(strtolower($module))); }
该方法中,如果 url 中不包含配置文件重定义的 var_module (默认为 m,在 ./thinkphp/conf/convention.php 中)的值,则找配置文件中定义的 default_module 的值。
通过以上分析,得出 bind_module 实际上是定义默认模块,如果在项目中有多个模块的话,不要这样配置。
如果此时注释默认入口文件 ./index.php 中的 bind_module(即采用默认的入口文件配置),那么直接访问 http://servername/admin 就可以访问 admin 模块,因为在该入口文件中,定义了应用目录 ./application,那么访问 http://servername/admin 实际就是访问了 ./application/admin/controller/indexcontroller.class.php 中的 index 方法。
thinkphp 3.2.3 采用这种方式配置多模块就可以了,无需在入口文件和配置文件中另作定义,这也是 thinkphp 官方推荐的分组模式。
另外一种配置就是多入口设计,即在默认入口文件 index.php 的同级创建 admin.php ,同时在 index.php 中添加:
// 绑定home模块到当前入口文件 define('bind_module','home');
在 admin.php 中采用和 index.php 相同的配置,除了 bind_module 的定义,将 bind_module 的定义改为:
// 绑定admin模块到当前入口文件 define('bind_module','admin');
然后在应用配置文件 ./application/common/conf/config.php 中添加:
//设置默认模块 'default_module' => 'home',
此时访问 http://servername/index.php 就能访问 home 模块,访问 http://servername/admin.php ,就能访问 admin 模块,而无法访问 http://servername/admin ,因为此时 index.php 只能访问 home 模块。
多应用
通常情况下 thinkphp 3.2.3 无需使用多应用模式,因为大多数情况下都可以通过多模块化以及多入口的设计来解决应用的扩展需求。
如果一定要使用多应用模式,例如创建应用 application_api,那么可以在 ./application 同级目录下创建目录 applicaiton_api,同时增加入口文件 ./api.php,将应用目录指向 ./application_api:
// 定义应用目录 define('app_path','./application_api/');
注意初始情况下新增加的应用一定要有 home 模块,即使在 ./application_api/common/conf/config.php 中设置了
//设置默认模块 'default_module' => 'api',
也许要初始有 home 模块,否则会报错:无法加载 index 控制器。