Abstract Class yii\base\Request
Request 表示由 yii\base\Application 处理的请求。
有关 Request 的更多详细信息和使用信息,请参阅 请求的指南文章。
公共属性
| 属性 | 类型 | 描述 | 被定义在 | 
|---|---|---|---|
| $behaviors | yii\base\Behavior[] | List of behaviors attached to this component | yii\base\Component | 
| $isConsoleRequest | boolean | 指示当前请求是否通过控制台运行的值 | yii\base\Request | 
| $scriptFile | string | 入口脚本文件路径(processed w/ realpath()) | yii\base\Request | 
公共方法
| 方法 | 描述 | 被定义在 | 
|---|---|---|
| __call() | Calls the named method which is not a class method. | yii\base\Component | 
| __clone() | This method is called after the object is created by cloning an existing one. | yii\base\Component | 
| __construct() | Constructor. | yii\base\BaseObject | 
| __get() | Returns the value of a component property. | yii\base\Component | 
| __isset() | Checks if a property is set, i.e. defined and not null. | yii\base\Component | 
| __set() | Sets the value of a component property. | yii\base\Component | 
| __unset() | Sets a component property to be null. | yii\base\Component | 
| attachBehavior() | Attaches a behavior to this component. | yii\base\Component | 
| attachBehaviors() | Attaches a list of behaviors to the component. | yii\base\Component | 
| behaviors() | Returns a list of behaviors that this component should behave as. | yii\base\Component | 
| canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\Component | 
| canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\Component | 
| className() | Returns the fully qualified name of this class. | yii\base\BaseObject | 
| detachBehavior() | Detaches a behavior from the component. | yii\base\Component | 
| detachBehaviors() | Detaches all behaviors from the component. | yii\base\Component | 
| ensureBehaviors() | Makes sure that the behaviors declared in behaviors() are attached to this component. | yii\base\Component | 
| getBehavior() | Returns the named behavior object. | yii\base\Component | 
| getBehaviors() | Returns all behaviors attached to this component. | yii\base\Component | 
| getIsConsoleRequest() | 返回一个值,该值指示当前请求是否通过命令行生成。 | yii\base\Request | 
| getScriptFile() | 返回入口脚本文件的路径。 | yii\base\Request | 
| hasEventHandlers() | Returns a value indicating whether there is any handler attached to the named event. | yii\base\Component | 
| hasMethod() | Returns a value indicating whether a method is defined. | yii\base\Component | 
| hasProperty() | Returns a value indicating whether a property is defined for this component. | yii\base\Component | 
| init() | Initializes the object. | yii\base\BaseObject | 
| off() | Detaches an existing event handler from this component. | yii\base\Component | 
| on() | Attaches an event handler to an event. | yii\base\Component | 
| resolve() | 将当前请求解析为路由和相关参数。 | yii\base\Request | 
| setIsConsoleRequest() | 设置指示当前请求是否通过命令行生成的值。 | yii\base\Request | 
| setScriptFile() | 设置入口脚本文件路径。
通常可以根据 SCRIPT_FILENAMESERVER 变量确定入口脚本文件路径。
但是,对于某些服务器配置,这可能不正确或不可行。
提供此 setter 以便可以手动指定入口脚本文件路径。 | yii\base\Request | 
| trigger() | Triggers an event. | yii\base\Component | 
属性详情
指示当前请求是否通过控制台运行的值
入口脚本文件路径(processed w/ realpath())
方法详情
返回一个值,该值指示当前请求是否通过命令行生成。
| public boolean getIsConsoleRequest() | ||
| return | boolean | 指示当前请求是否通过控制台运行的值 | 
|---|---|---|
返回入口脚本文件的路径。
| public string getScriptFile() | ||
| return | string | 入口脚本文件路径(processed w/ realpath()) | 
|---|---|---|
| throws | yii\base\InvalidConfigException | 如果无法自动确定入口脚本文件路径。 | 
将当前请求解析为路由和相关参数。
| public abstract array resolve() | ||
| return | array | 第一个元素是路由,第二个元素是相关参数。 | 
|---|---|---|
设置指示当前请求是否通过命令行生成的值。
| public void setIsConsoleRequest($value) | ||
| $value | boolean | 指示当前请求是否通过命令行生成的值 | 
设置入口脚本文件路径。
通常可以根据 SCRIPT_FILENAME SERVER 变量确定入口脚本文件路径。
但是,对于某些服务器配置,这可能不正确或不可行。
提供此 setter 以便可以手动指定入口脚本文件路径。
| public void setScriptFile($value) | ||
| $value | string | 入口脚本文件路径。可以是文件路径或 路径别名。 | 
| throws | yii\base\InvalidConfigException | 如果提供的入口脚本文件路径无效。 | 
|---|---|---|