yaf实现model与controller中间层
目录结构
1 | ./application/middles |
Backend/Index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
* [CodeZm!] Author CodeZm[codezm@163.com].
*
*
* $Id: Index.php 2021-05-20 10:18:54 codezm $
*/
namespace Middles\Backend;
class Index {
public function index() {
return 'index';
}
}DefaultMiddle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* [CodeZm!] Author CodeZm[codezm@163.com].
*
*
* $Id: DefaultMiddle.php 2021-05-19 14:05:34 codezm $
*/
namespace Middles;
//class DefaultMiddle {
//class DefaultMiddle extends \Core_CMiddle {
class DefaultMiddle extends \MembersModel {
/**
* getMembers
*
*/
public function getMembers($id) {
/* {{{ */
return $this->select([
'where' => [
'uid' => $id
]
]);
/* }}} */
}
}
方案一
在
php.ini
中,开启命名空间yaf.use_namespace=1
。在
conf/application.ini
配置文件中增加以下配置。1
2application.library.directory = APPLICATION_PATH "/application"
application.library.namespace = "middles"
方案二
在框架入口文件 application/Bootstrap.php
中,类首行增加以下代码。
1 | public function _initLoader() { |
方案三
此方案与方案二类似,不过是基于 composer
实现。
1 | "autoload": { |
1 | composer dumpautoload -o |