当前位置:Gxlcms > PHP教程 > yii的方法createUrl生成路径有关问题

yii的方法createUrl生成路径有关问题

时间:2021-07-01 10:21:17 帮助过:17人阅读

yii的方法createUrl生成路径问题
发现用 $this->createUrl('index/archives') 后成的路径是相对的这种 。 不是 www.xxxx.com/ 绝对的这种。请问一下有什么方法让 createUrl生成绝对的吗?我在网上找了好久都没有找到方法
------解决方案--------------------
使用createAbsoluteUrl()就可以了。
$route = 'index/archives';
$params=array();
$url=$this->createAbsoluteUrl($route,$params);

http://www.yiiframework.com/doc/api/1.1/CController#createAbsoluteUrl-detail

人气教程排行