2010-02-02 27 views

回答

4

如果你担心很多url::base()电话,你可以把它变成一个常数。

define('PATH_BASE', url::base()); 
7

对于Kohana的3,这是网址::基地()

从DOC:

// Absolute URL path with no host or protocol 
echo URL::base(); 

// Absolute URL path with host, https protocol and index.php if set 
echo URL::base('https', TRUE); 

// Absolute URL path with host and protocol from $request 
echo URL::base($request); 

参考:http://kohanaframework.org/3.1/guide/api/URL

2

我用这,和它的作品。

echo URL::base(); 
or 
echo URL::base(true);