Skip to content

Instantly share code, notes, and snippets.

@asilbalaban
Created March 19, 2014 07:52
Show Gist options
  • Select an option

  • Save asilbalaban/9637228 to your computer and use it in GitHub Desktop.

Select an option

Save asilbalaban/9637228 to your computer and use it in GitHub Desktop.
Codeigniter get domain name. Put this function to your url_helper
function getDomain()
{
$CI =& get_instance();
return preg_replace("/^[\w]{2,6}:\/\/([\w\d\.\-]+).*$/","$1", $CI->config->slash_item('base_url'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment