0%

yaf实现model与controller中间层

yaf实现model与controller中间层

目录结构

1
2
3
4
./application/middles
├── Backend
│   └── Index.php
└── DefaultMiddle.php
  • Backend/Index.php

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    <?php

    /**
    * [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
    <?php

    /**
    * [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
    ]
    ]);

    /* }}} */
    }
    }

方案一

  1. php.ini 中,开启命名空间 yaf.use_namespace=1

  2. conf/application.ini 配置文件中增加以下配置。

    1
    2
    application.library.directory = APPLICATION_PATH "/application"
    application.library.namespace = "middles"

方案二

在框架入口文件 application/Bootstrap.php 中,类首行增加以下代码。

1
2
3
public function _initLoader() {
\Yaf\Loader::getInstance()->registerNamespace("\Middles", APPLICATION_PATH . "/application/middles");
}

方案三

此方案与方案二类似,不过是基于 composer 实现。

1
2
3
4
5
"autoload": {
"psr-4": {
"Middles\\": "application/middles/"
}
}
1
composer dumpautoload -o