thinkphp5怎么获取 CONTROLLER_NAME

tp5没有CONTROLLER_NAME了,怎么获取CONTROLLER名称

阅读 6.5k
3 个回答
public function test(Request $request)
  {
    dump($request->controller());
  }

多看源码

/**
     * 设置或者获取当前的模块名
     * @access public
     * @param string $module 模块名
     * @return string|Request
     */
    public function module($module = null)
    {
        if (!is_null($module)) {
            $this->module = $module;
            return $this;
        } else {
            return $this->module ?: '';
        }
    }

    /**
     * 设置或者获取当前的控制器名
     * @access public
     * @param string $controller 控制器名
     * @return string|Request
     */
    public function controller($controller = null)
    {
        if (!is_null($controller)) {
            $this->controller = $controller;
            return $this;
        } else {
            return $this->controller ?: '';
        }
    }

    /**
     * 设置或者获取当前的操作名
     * @access public
     * @param string $action 操作名
     * @return string|Request
     */
    public function action($action = null)
    {
        if (!is_null($action)) {
            $this->action = $action;
            return $this;
        } else {
            return $this->action ?: '';
        }
    }

好像没有了,,那就自己获取呗。。。

使用__CLASS__试试,还有获取方法的, METHOD__, __FUNCTION 不过要截取。。。

$request = \think\Request::instance();
        echo $request->controller();exit;
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题