本文整理汇总了PHP中Params::request方法的典型用法代码示例。如果您正苦于以下问题:PHP Params::request方法的具体用法?PHP Params::request怎么用?PHP Params::request使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Params
的用法示例。
在下文中一共展示了Params::request方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onRequestStart
public function onRequestStart()
{
// TODO become more clueful:
// geo-ip
// user agent
// other?
$reqval = Params::request($this->requestKey);
if (isset($reqval)) {
$lang = $reqval;
setcookie($this->cookieKey, $lang, time() + EXPIRY_TIME);
} else {
$lang = Params::cookie($this->cookieKey);
}
if (!isset($lang)) {
$lang = $this->defaultLang;
}
$this->set($lang);
}
示例2: __construct
/**
* contructor; generic initializations
* do your initializations onInitialize()
*/
public final function __construct($actionId = null)
{
$this->title = get_class($this);
$this->onInitialize();
$this->onRegisterActions();
if (!isset($actionId)) {
$actionId = Params::request(self::$ActionKey, null);
}
if (!isset($actionId)) {
throw new RuntimeException("need an action");
}
$this->action = $this->getAction($actionId);
if (!$this->action) {
throw new RuntimeException("Unknown action {$actionId}");
}
$this->stage = Params::request(self::$StageKey, Stage::VIEW);
if (Params::server('HTTPS') != 'on' && $this->action->requiresSSL) {
// TODO implement secure checking
}
}