2

我正在尝试为我的数据库创建一个小型 RESTful API,但我遇到了根据用户请求动态创建控制器对象的问题,因为我所有的代码都在使用命名空间并且只是在做:

$api = new $controllerName($request);

不会工作。因为$controllerName会解析为“ReadController”,但实际上\controllers\lottery\ReadController是错误

定义类路径的整个部分是:

if ($method === 'GET') {
    $controllerName = 'ReadController';
    // @NOTE: $category is a part of $_GET parameters, e.g: /api/lottery <- lottery is a $category
    $controllerFile = CONTROLLERS.$category.'/'.$controllerName.'.php';
    if (file_exists($controllerFile)) {
        include_once($controllerFile);

        $api = new $controllerName($request);
    } else {
        throw new \Exception('Undefined controller');
    }
}

以及在 core\controllers\lottery\ReadController.php 中声明 ReadController

namespace controllers\lottery;

class ReadController extends \core\API {

}

任何想法如何动态创建对象?

谢谢!

4

1 回答 1

8
$controllerName = 'controllers\lottery\ReadController';
new $controllerName($request);

从字符串实例化的类必须始终使用完全限定的类名

于 2013-11-03T09:43:08.233 回答