1. 取得url中的host資訊:
例如:
Yii::$app->request->getHostInfo();
結果:
2. 取得url中的路徑資訊(不包含host和參數):
例如:
Yii::$app->request->getPathInfo()
結果:product/2.html
3. 取得不包含host資訊的url(含參數):
例如:
Yii::$app->request->url
結果:product/2. html?isnew=1
4. 取得完整url(含host以及參數):
例如:
Yii::$app->request->getHostInfo().Yii::$app->request->url;
Yii::$app->request->queryString
Yii::$app->request->getQueryParam('id')
以上是Yii2框架中如何取得URL的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!