企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
> 在控制器中继承 Base 类,该类继承了 Yaf\Controller_Abstract > 可以通过 使用$this->getRequest()来获取Yaf框架定义的当前请求对象 [TOC] ## 返回当前模块名 ``` $this->getModule() ``` ## 返回当前控制器名 ``` $this->getController() ``` ## 返回当前动作名 ``` $this->getAction() ``` ## 获取客户端IP ``` $this->getClientIp($checkProxy = true) ``` ## 生成请求令牌 ``` /** * @access public * @param string $name 令牌名称 * @param mixed $type 令牌生成方法 * @return string */ $this->token($name = '__token__', $type = null) ```