yii生成路径(来自http://yiiblog.info)
{full URL}
1 |
http: //localhost/yii_lab/index.php?r=lab/urlBoyLeeTest |
<br/>
{Yii::app()->request->hostInfo}
1 |
echo (Yii::app()->request->hostInfo); |
2 |
//out => http://localhost |
{createUrl()}
1 |
echo $this ->createUrl( 'urlBoyLeeTest' ); |
2 |
//out => /yii_lab/index.php?r=lab/urlBoyLeeTest |
{createAbsoluteUrl()}
1 |
echo $this ->createAbsoluteUrl( 'urlBoyLeeTest' ); |
3 |
//A+B ^&^ |