本文整理汇总了PHP中Req::hasget方法的典型用法代码示例。如果您正苦于以下问题:PHP Req::hasget方法的具体用法?PHP Req::hasget怎么用?PHP Req::hasget使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Req
的用法示例。
在下文中一共展示了Req::hasget方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: env
public static function env($checkget = true)
{
if ($checkget && Req::hasget('environment')) {
return Req::get('environment');
}
$serverName = $_SERVER['SERVER_NAME'];
return isset(Config::$baseurl[$serverName]) ? Config::$baseurl[$serverName] : 'production';
}
示例2: env
public static function env()
{
if (Req::hasget('development')) {
Lib::cookie()->set('development', Req::get('development'));
}
if (Lib::cookie()->get('development')) {
return 'development';
}
return self::$env;
}
示例3: url
public static function url($key, $options = array(), $external = false)
{
$values = array();
$link = $external ? Config::getHTMLBase() : '';
if (Req::hasget('environment')) {
$options['environment'] = Req::get('environment');
}
if (Config::$sef) {
Lib::load('router');
$segments = array();
foreach (Router::getRouters() as $router) {
if (is_string($router->allowedBuild) && $key !== $router->allowedBuild) {
continue;
}
if (is_array($router->allowedBuild) && !in_array($key, $router->allowedBuild)) {
continue;
}
$router->encode($key, $options, $segments);
}
if (!empty($segments)) {
$link .= implode('/', $segments);
}
} else {
$link .= 'index.php';
}
if (!empty($options)) {
$values = array();
foreach ($options as $k => $v) {
$values[] = urlencode($k) . '=' . urlencode($v);
}
$queries = implode('&', $values);
if (!empty($queries)) {
$queries = '?' . $queries;
}
$link .= $queries;
}
return $link;
}