Home >Backend Development >PHP Tutorial >yii的方法createUrl生成路径有关问题

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 12:00:471170browse

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn