Created
March 19, 2014 07:52
-
-
Save asilbalaban/9637228 to your computer and use it in GitHub Desktop.
Codeigniter get domain name. Put this function to your url_helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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