我想在CI 3.0上添加新的网址变量,例如site_url
或base_url
。
例如;我想为管理区域添加admin_url
变量,为资产添加assets_url
变量。
我检查了CI 3.0指南,但找不到解决方案。
提前致谢。
答案 0 :(得分:4)
这很直接。
只需转到位于/ your_root / application / config目录下的config.php
在该文件底部的这一行添加
$config["admin_url"] = "http://www.your_url.com/admin";
$config["assets_url"] = "http://www.your_url.com/assets";
要在应用程序的任何位置检索它,请使用此
$your_admin_variable =$this->config->item("admin_url");
$your_assets_variable =$this->config->item("assets_url");
你的事业:)
答案 1 :(得分:0)
我的解决方案。
创建新的帮助文件并将此文件添加到自动加载。
所以..
创建文件application/helpers/global_helper.php
帮助者内部创建函数,例如:
<?php
function admin_url(){
return base_url() . "/admin/";
}
现在修改config/autoload.php
$autoload['helper'] = array('url','global');
将新助手添加到存在数组。
现在,您可以在任何地方使用您的功能admin_url
答案 2 :(得分:0)
在system / helpers / url_helper.php中你会找到
if ( ! function_exists('base_url'))
{
function base_url($uri = '')
{
$CI =& get_instance();
return $CI->config->base_url($uri);
}
}
所以我想如果你像这样创建自己的代码
if ( ! function_exists('your_variable_name'))
{
function your_variable_name($uri = '')
{
$CI =& get_instance();
return $CI->config->your_variable_name($uri);
}
}
但最好扩展帮助程序而不是修改它,这样你就可以在application/helpers/MY_url_helper.php
中使用上面的代码了。
然后你可以像通常使用base_url一样调用自定义变量
希望有所帮助
答案 3 :(得分:0)
我现在得到了答案,
在system/helpers/url_helper.php
文件中添加以下行:
if ( ! function_exists('admin_css'))
{
/**
* Base URL
*
* Create a local URL based on your basepath.
* Segments can be passed in as a string or an array, same as site_url
* or a URL to a file can be passed in, e.g. to an image file.
*
* @param string $uri
* @param string $protocol
* @return string
*/
function admin_css($uri = '', $protocol = NULL)
{
return get_instance()->config->admin_css($uri, $protocol);
}
}
并在system/core/Config.php
public function admin_css($uri = '', $protocol = NULL)
{
$base_url = base_url('assets/staff/css').'/';
if (isset($protocol))
{
$base_url = $protocol.substr($base_url, strpos($base_url, '://'));
}
if (empty($uri))
{
return $base_url.$this->item('index_page');
}
$uri = $this->_uri_string($uri);
if ($this->item('enable_query_strings') === FALSE)
{
$suffix = isset($this->config['url_suffix']) ? $this->config['url_suffix'] : '';
if ($suffix !== '')
{
if (($offset = strpos($uri, '?')) !== FALSE)
{
$uri = substr($uri, 0, $offset).$suffix.substr($uri, $offset);
}
else
{
$uri .= $suffix;
}
}
return $base_url.$this->slash_item('index_page').$uri;
}
elseif (strpos($uri, '?') === FALSE)
{
$uri = '?'.$uri;
}
return $base_url.$this->item('index_page').$uri;
}
不要忘记自动加载url_helper
。通过这种方式,您可以使用admin_css
这样的变量:<?php echo admin_css('foo.css'); ?>
如果您使用此帖子中的其他答案,则不能使用<?php echo admin_css('foo.css'); ?>
谢谢大家。