46

在 Yii 中如何获取当前页面的 URL。例如:

http://www.yoursite.com/your_yii_application/?lg=pl&id=15

但不包括$GET_['lg'](不手动解析字符串)?

我的意思是,我正在寻找类似于Yii::app()->requestUrl/Chtml::link()方法的东西,用于返回减去一些$_GET变量的 URL。

编辑:当前解决方案:

unset $_GET['lg'];

echo Yii::app()->createUrl(
  Yii::app()->controller->getId().'/'.Yii::app()->controller->getAction()->getId() , 
  $_GET 
);
4

16 回答 16

76

易1

Yii::app()->request->url

对于 Yii2:

Yii::$app->request->url
于 2012-10-29T15:46:01.210 回答
31
Yii::app()->createAbsoluteUrl(Yii::app()->request->url)

这将输出以下格式的内容:

http://www.yoursite.com/your_yii_application/
于 2012-12-22T06:23:45.827 回答
22

易1

大多数其他答案都是错误的。发帖人要求提供没有(某些)$_GET 参数的 url。

这是一个完整的细分(为当前活动的控制器、模块或不创建 url):

// without $_GET-parameters
Yii::app()->controller->createUrl(Yii::app()->controller->action->id);

// with $_GET-parameters, HAVING ONLY supplied keys
Yii::app()->controller->createUrl(Yii::app()->controller->action->id,
    array_intersect_key($_GET, array_flip(['id']))); // include 'id'

// with all $_GET-parameters, EXCEPT supplied keys
Yii::app()->controller->createUrl(Yii::app()->controller->action->id,
    array_diff_key($_GET, array_flip(['lg']))); // exclude 'lg'

// with ALL $_GET-parameters (as mensioned in other answers)
Yii::app()->controller->createUrl(Yii::app()->controller->action->id, $_GET);
Yii::app()->request->url;

当您没有相同的活动控制器时,您必须像这样指定完整路径:

Yii::app()->createUrl('/controller/action');
Yii::app()->createUrl('/module/controller/action');

查看 Yii 构建 url 的指南:http ://www.yiiframework.com/doc/guide/1.1/en/topics.url#creating-urls

于 2014-03-17T17:05:32.537 回答
15

要获取绝对当前请求 url(与地址栏中的完全一样,使用 GET 参数和 http://),我发现以下方法效果很好:

Yii::app()->request->hostInfo . Yii::app()->request->url
于 2014-06-17T15:00:05.930 回答
11

在 Yii2 中你可以这样做:

use yii\helpers\Url;
$withoutLg = Url::current(['lg'=>null], true);

更多信息: https ://www.yiiframework.com/doc/api/2.0/yii-helpers-baseurl#current%28%29-detail

于 2015-10-29T08:34:25.480 回答
6

我不知道在 Yii 中这样做,但你可以这样做,它应该可以在任何地方工作(很大程度上来自我的回答):

// Get HTTP/HTTPS (the possible values for this vary from server to server)
$myUrl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] && !in_array(strtolower($_SERVER['HTTPS']),array('off','no'))) ? 'https' : 'http';
// Get domain portion
$myUrl .= '://'.$_SERVER['HTTP_HOST'];
// Get path to script
$myUrl .= $_SERVER['REQUEST_URI'];
// Add path info, if any
if (!empty($_SERVER['PATH_INFO'])) $myUrl .= $_SERVER['PATH_INFO'];

$get = $_GET; // Create a copy of $_GET
unset($get['lg']); // Unset whatever you don't want
if (count($get)) { // Only add a query string if there's anything left
  $myUrl .= '?'.http_build_query($get);
}

echo $myUrl;

或者,您可以将 Yii 方法之一的结果传递给parse_url(),并操纵结果以重新构建您想要的。

于 2011-12-07T09:40:38.297 回答
6

你肯定在寻找这个

Yii::app()->request->pathInfo
于 2015-12-07T05:53:58.560 回答
5

所以,你可以使用

Yii::app()->getBaseUrl(true)

获取绝对 webroot url,并剥离 http[s]://

于 2014-05-15T07:24:36.603 回答
1

如果在控制器中运行,这样的东西应该可以工作:

$controller = $this;
$path = '/path/to/app/' 
  . $controller->module->getId() // only necessary if you're using modules
  . '/' . $controller->getId() 
  . '/' . $controller->getAction()->getId()
. '/';

这假设您在应用配置中使用“友好”的 URL。

于 2011-12-13T00:22:50.470 回答
0
$validar= Yii::app()->request->getParam('id');
于 2015-03-11T06:53:40.783 回答
0

对于 Yii1

我发现首先从 CUrlManager 获取当前路由,然后再次使用该路由来构建新 url 是一种干净的方法。这样您就不会“看到”应用程序的 baseUrl,请参阅下面的示例。

带有控制器/动作的示例:

GET /app/customer/index/?random=param
$route = Yii::app()->urlManager->parseUrl(Yii::app()->request);
var_dump($route); // string 'customer/index' (length=14)
$new = Yii::app()->urlManager->createUrl($route, array('new' => 'param'));
var_dump($new); // string '/app/customer/index?new=param' (length=29)

带有模块/控制器/动作的示例:

GET /app/order/product/admin/?random=param
$route = Yii::app()->urlManager->parseUrl(Yii::app()->request);
var_dump($route); // string 'order/product/admin' (length=19)
$new = Yii::app()->urlManager->createUrl($route, array('new' => 'param'));
var_dump($new); string '/app/order/product/admin?new=param' (length=34)

仅当您的 url 完全被 CUrlManager 的规则覆盖时,这才有效:)

于 2021-06-30T22:02:50.537 回答
0

Yii2

Url::current([], true);

或者

Url::current();
于 2018-06-30T09:25:00.687 回答
0

对于 Yii2:这应该更安全Yii::$app->request->absoluteUrl而不是Yii::$app->request->url

于 2018-10-05T11:31:33.040 回答
-1

尝试使用此变体:

<?php echo Yii::app()->createAbsoluteUrl('your_yii_application/?lg=pl', array('id'=>$model->id));?>

这是最简单的方法,我猜。

于 2014-02-08T11:35:07.560 回答
-1
echo Yii::$app->request->url;
于 2018-06-08T12:02:49.860 回答
-1

大多数答案都是错误的。

问题是在没有一些查询参数的情况下获取 url。

这是有效的功能。它实际上做了更多的事情。您可以删除不需要的参数,并且可以添加或修改现有参数。

/**
 * Function merges the query string values with the given array and returns the new URL
 * @param string $route
 * @param array $mergeQueryVars
 * @param array $removeQueryVars
 * @return string
 */
public static function getUpdatedUrl($route = '', $mergeQueryVars = [], $removeQueryVars = [])
{
    $currentParams = $request = Yii::$app->request->getQueryParams();

    foreach($mergeQueryVars as $key=> $value)
    {
        $currentParams[$key] = $value;
    }

    foreach($removeQueryVars as $queryVar)
    {
        unset($currentParams[$queryVar]);
    }

    $currentParams[0] = $route == '' ? Yii::$app->controller->getRoute() : $route;

    return Yii::$app->urlManager->createUrl($currentParams);

}

用法:

ClassName:: getUpdatedUrl('',[],['remove_this1','remove_this2'])

这将从 URL 中删除查询参数“remove_this1”和“remove_this2”并返回新的 URL

于 2017-01-12T10:02:12.343 回答