$this->app['hook']->listen('module_init');
try {
// 实例化控制器
$instance = $this->app->controller($this->controller,
$this->rule->getConfig('url_controller_layer'),
$this->rule->getConfig('controller_suffix'),
$this->rule->getConfig('empty_controller'));
} catch (ClassNotFoundException $e) {
throw new HttpException(404, 'controller not exists:' . $e->getClass());
}
$this->app['middleware']->controller(function (Request $request, $next) use ($instance) {
// 获取当前操作名
$action = $this->actionName . $this->rule->getConfig('action_suffix');
if (is_callable([$instance, $action])) {
// 执行操作方法
$call = [$instance, $action];
USER | www |
HOME | /home/www |
FCGI_ROLE | RESPONDER |
SCRIPT_FILENAME | /www/wwwroot/huangshanjinlei.com/public/index.php |
QUERY_STRING | s=channels/104.html |
REQUEST_METHOD | GET |
CONTENT_TYPE | |
CONTENT_LENGTH | |
SCRIPT_NAME | /index.php |
REQUEST_URI | /channels/104.html |
DOCUMENT_URI | /index.php |
DOCUMENT_ROOT | /www/wwwroot/huangshanjinlei.com/public |
SERVER_PROTOCOL | HTTP/1.1 |
REQUEST_SCHEME | http |
GATEWAY_INTERFACE | CGI/1.1 |
SERVER_SOFTWARE | nginx/1.14.1 |
REMOTE_ADDR | 216.172.156.42 |
REMOTE_PORT | 59804 |
SERVER_ADDR | 172.26.146.168 |
SERVER_PORT | 80 |
SERVER_NAME | huangshanjinlei.com |
REDIRECT_STATUS | 200 |
PATH_INFO | |
HTTP_USER_AGENT | Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html) |
HTTP_HOST | www.huangshanjinlei.com |
HTTP_ACCEPT | */* |
HTTP_ACCEPT_ENCODING | gzip |
PHP_SELF | /index.php |
REQUEST_TIME_FLOAT | 1681495226.3981 |
REQUEST_TIME | 1681495226 |
APP_DEBUG | true |
CMF_ROOT | /www/wwwroot/huangshanjinlei.com/ |
CMF_DATA | /www/wwwroot/huangshanjinlei.com/data/ |
APP_PATH | /www/wwwroot/huangshanjinlei.com/app/ |
WEB_ROOT | /www/wwwroot/huangshanjinlei.com/public/ |
HTMLPURIFIER_PREFIX | /www/wwwroot/huangshanjinlei.com/vendor/ezyang/htmlpurifier/library |