我正在尝试为我的数据库创建一个小的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
中声明ReadControllernamespace controllers\lottery;
class ReadController extends \core\API {
}
如何动态创建对象?
谢谢!
答案 0 :(得分:7)
$controllerName = 'controllers\lottery\ReadController';
new $controllerName($request);
从字符串实例化的类必须始终使用完全限定的类名。