Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は別のものを持っていて、メソッドが呼び出されているhomeUrlときにそれを使用したいcreateUrl()
homeUrl
createUrl()
例えば
Yii::app()->homeUrl = Yii::app()->params['myurl'];
しかし、私がするとき
$this->createUrl(Yii::app()->homeUrl.'controller/action');
2つの異なるURLを取得しています...これを解決する方法は?
サソリ、
次のことを行う必要がある場合があります。
<?php echo Yii::app()->homeUrl.'?r=controller/action';?>
/app/index.php?r=controller/actionを出力します