没有命名空间的类 yii yii\base yii\behaviors yii\caching yii\captcha yii\console yii\console\controllers yii\console\widgets yii\data yii\db yii\db\conditions yii\db\cubrid yii\db\cubrid\conditions yii\db\mssql yii\db\mssql\conditions yii\db\mysql yii\db\oci yii\db\oci\conditions yii\db\pgsql yii\db\sqlite yii\db\sqlite\conditions yii\di yii\filters yii\filters\auth yii\grid yii\helpers yii\i18n yii\log yii\mail yii\mutex yii\rbac yii\rest yii\test yii\validators yii\web yii\widgets

Abstract Class yii\base\Request

继承yii\base\Request » yii\base\Component » yii\base\BaseObject
实现yii\base\Configurable
子类yii\console\Request, yii\web\Request
可用版本自2.0
源码 https://github.com/yiichina/yii2/blob/api/framework/base/Request.php

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_FILENAME SERVER 变量确定入口脚本文件路径。 但是,对于某些服务器配置,这可能不正确或不可行。 提供此 setter 以便可以手动指定入口脚本文件路径。 yii\base\Request
trigger() Triggers an event. yii\base\Component

属性详情

$isConsoleRequest 公共 属性

指示当前请求是否通过控制台运行的值

public boolean getIsConsoleRequest ( )
public void setIsConsoleRequest ( $value )
$scriptFile 公共 属性

入口脚本文件路径(processed w/ realpath())

public string getScriptFile ( )
public void setScriptFile ( $value )

方法详情

getIsConsoleRequest() 公共 方法

返回一个值,该值指示当前请求是否通过命令行生成。

public boolean getIsConsoleRequest()
return boolean

指示当前请求是否通过控制台运行的值

getScriptFile() 公共 方法

返回入口脚本文件的路径。

public string getScriptFile()
return string

入口脚本文件路径(processed w/ realpath())

throws yii\base\InvalidConfigException

如果无法自动确定入口脚本文件路径。

resolve() 公共 抽象 方法

将当前请求解析为路由和相关参数。

public abstract array resolve()
return array

第一个元素是路由,第二个元素是相关参数。

setIsConsoleRequest() 公共 方法

设置指示当前请求是否通过命令行生成的值。

public void setIsConsoleRequest($value)
$value boolean

指示当前请求是否通过命令行生成的值

setScriptFile() 公共 方法

设置入口脚本文件路径。 通常可以根据 SCRIPT_FILENAME SERVER 变量确定入口脚本文件路径。 但是,对于某些服务器配置,这可能不正确或不可行。 提供此 setter 以便可以手动指定入口脚本文件路径。

public void setScriptFile($value)
$value string

入口脚本文件路径。可以是文件路径或 路径别名

throws yii\base\InvalidConfigException

如果提供的入口脚本文件路径无效。