我正在尝试为我的数据库创建一个小型 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 {
}
任何想法如何动态创建对象?
谢谢!